-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "cache-manager-fs-binary",
"version": "1.0.4",
"description": "file system store for node cache manager with binary data as files",
"keywords": [
"cache-manager",
"storage",
"filesystem"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sheershoff/node-cache-manager-fs-binary.git"
},
"bugs": {
"url": "https://github.com/sheershoff/node-cache-manager-fs-binary/issues"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"coverage": "npm run create-coverage && npm run show-coverage",
"create-coverage": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec -t 5000",
"show-coverage": "start coverage\\lcov-report\\index.html"
},
"author": "Ilya Sheershoff",
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"cache-manager": "^1.1.0",
"extend": "^3.0.0",
"fs-promise": "^0.3.1",
"glob": "^7.0.3",
"streamifier": "^0.1.1",
"uuid": "^2.0.1"
},
"devDependencies": {
"chai": "^3.3.0",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"buffer-equal": "^1.0.0"
}
}