-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.59 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "key-cache",
"version": "1.0.0",
"description": "Storing data in the form of key into the file",
"main": "lib/main.js",
"scripts": {
"check": "fecs check src/ test/ --reporter=baidu",
"compile": "babel src/ -d lib/",
"watch": "npm run compile -- --watch",
"start": "node test.js",
"prepublish": "npm run compile",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --compilers js:babel-register -t 5000 --recursive -R spec test/",
"test": "mocha --compilers js:babel-register --reporter spec --timeout 5000 --recursive test/",
"hook-install": "prepush install",
"hook-remove": "prepush remove",
"release": "bash release.sh"
},
"keywords": [
"cache",
"filecache",
"file",
"json cache",
"flat-file"
],
"prepush": [
"npm run check"
],
"repository": {
"type": "git",
"url": "https://github.com/xuexb/key-cache.git"
},
"author": "xiaowu",
"license": "MIT",
"bugs": {
"url": "https://github.com/xuexb/key-cache/issues"
},
"homepage": "https://github.com/xuexb/key-cache/",
"dependencies": {
"fs-extra": ">=0.26.5",
"babel-runtime": "6.x"
},
"devDependencies": {
"babel-cli": "6.x",
"babel-plugin-add-module-exports": "*",
"babel-plugin-transform-runtime": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-stage-0": "6.x",
"babel-preset-stage-3": "6.x",
"babel-register": ">=6.7.2",
"fecs": ">=0.6.5",
"istanbul": ">=1.0.0-alpha.2",
"mocha": ">=2.4.5",
"prepush": ">=3.1.8",
"should": ">=8.2.2"
},
"engines": {
"node": ">= 4.0.0"
}
}