-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (43 loc) · 1020 Bytes
/
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
{
"name": "cache-storage",
"description": "[ABANDONED] Advanced cache storage for node js",
"version": "2.0.1",
"author": {
"name": "David Kudera",
"email": "[email protected]"
},
"keywords": [
"cache",
"caching",
"storage",
"memory"
],
"repository": {
"type": "git",
"url": "[email protected]:Carrooi/Node-CacheStorage.git"
},
"license": "MIT",
"engines": {
"node": ">=0.9"
},
"main": "./lib/Cache.js",
"dependencies": {
"moment": "~2.5.0",
"async": "~0.2.9",
"redis": "~0.10.0"
},
"devDependencies": {
"chai": "~1.8.1",
"mocha": "~1.17.0",
"mocha-phantomjs": "~3.3.1",
"phantomjs": "~1.9.2-6",
"fs-mock": "~1.0.1"
},
"scripts": {
"test": "npm run test-node && npm run test-browser",
"build-and-test": "npm run build-tests && npm run test",
"build-tests": "coffee -co ./test/node/lib ./test/node/src; cd ./test/browser; simq build;",
"test-node": "mocha ./test/node/index.js --reporter spec",
"test-browser": "mocha-phantomjs ./test/browser/index.html"
}
}