forked from stefanpenner/async-disk-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 933 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": "async-disk-cache",
"version": "1.0.1",
"description": "Async disk cache",
"files": [
"index.js",
"lib/cache-entry.js"
],
"scripts": {
"test": "mocha test.js",
"test:debug": "mocha debug test.js",
"test:dot": "mocha test.js --reporter dot",
"coverage": "istanbul cover _mocha"
},
"repository": "stefanpenner/async-disk-cache",
"keywords": [
"cache",
"temp",
"file"
],
"author": "Stefan Penner <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.1.3",
"mkdirp": "^0.5.0",
"rimraf": "^2.2.8",
"rsvp": "^3.0.18"
},
"devDependencies": {
"chai": "^3.2.0",
"istanbul": "^0.3.6",
"mocha": "^2.1.0",
"stat-mode": "^0.2.1"
},
"jscsConfig": {
"preset": "google",
"disallowMultipleVarDecl": true,
"maximumLineLength": 80,
"requireBlocksOnNewline": true,
"validateLineBreaks": "LF"
}
}