forked from evanshortiss/expeditious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 871 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
{
"name": "expeditious",
"version": "0.1.0",
"description": "caching interface to simplify interaction with multiple storage engines",
"main": "lib/cache.js",
"scripts": {
"test": "npm run lint && npm run unit && npm run coverage",
"lint": "npm run jshint && npm run linelint",
"jshint": "jshint $(ls lib/*.js)",
"linelint": "linelint $(ls lib/*.js)",
"unit": "mocha test/",
"coverage": "nyc mocha test/ && nyc report --reporter=html"
},
"keywords": [
"expeditious",
"caching",
"cache",
"api"
],
"author": "Evan Shortiss",
"license": "MIT",
"dependencies": {
"safejson": "^1.0.1",
"verror": "^1.6.1"
},
"devDependencies": {
"chai": "^3.5.0",
"jshint": "^2.9.2",
"linelint": "^1.0.0",
"mocha": "^2.5.3",
"nyc": "^6.6.1",
"proxyquire": "^1.7.9",
"sinon": "^1.17.4"
}
}