-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 906 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
{
"name": "sacjs",
"version": "1.3.0",
"description": "Set Associative Cache",
"main": "lib/cache.js",
"scripts": {
"test-spec": "./node_modules/.bin/mocha --reporter=spec lib/*.spec.js",
"test": "nyc npm run test-spec"
},
"repository": {
"type": "git",
"url": "https://github.com/epoberezkin/sacjs.git"
},
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/sacjs/issues"
},
"homepage": "https://github.com/epoberezkin/sacjs",
"keywords": [
"cache",
"caching",
"associative",
"set-associative-cache"
],
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.15",
"mocha": "^2.2.5",
"nyc": "^10.0.0",
"pre-commit": "^1.2.2"
},
"dependencies": {
"json-stable-stringify": "^1.0.1"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
]
}
}