This repository was archived by the owner on Dec 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (42 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "memcing",
"version": "1.0.0",
"description": "An in-memory key-value caching application with RESTful API",
"main": "index.js",
"scripts": {
"start": "node index.js -i -listen-http",
"test": "node node_modules/mocha/bin/mocha --timeout 10000 --slow 2000 --reporter spec test/test-cache.js test/test-rest.js test/test-opts.js test/test-stdin.js",
"test-all": "node node_modules/mocha/bin/mocha --timeout 10000 --reporter list test/test-cache.js test/test-rest.js test/test-opts.js test/test-stdin.js",
"test-cache": "node node_modules/mocha/bin/mocha --reporter list test/test-cache.js",
"test-rest": "node node_modules/mocha/bin/mocha --reporter list test/test-rest.js",
"test-opts": "node node_modules/mocha/bin/mocha --reporter list test/test-opts.js",
"test-stdin": "node node_modules/mocha/bin/mocha --timeout 10000 --reporter list test/test-stdin.js",
"benchmark-1": "node benchmark/cache-basics.js",
"benchmark-cache-basics": "node benchmark/cache-basics.js"
},
"repository": {
"type": "git",
"url": "https://github.com/devfacet/memcing.git"
},
"keywords": [
"memory",
"in-memory",
"cache",
"caching",
"memcache",
"memcached"
],
"author": "devfacet",
"license": "MIT",
"homepage": "http://github.com/devfacet/memcing",
"dependencies": {
"utilex": "1.0.x",
"q": "1.4.x",
"csv": "0.3.x"
},
"devDependencies": {
"mocha": "3.2.x",
"chai": "3.5.x",
"request": "2.x.x"
}
}