-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "async-disk-cache",
"version": "2.1.0",
"description": "Async disk cache",
"files": [
"index.js",
"lib/"
],
"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": "^4.1.1",
"heimdalljs": "^0.2.3",
"istextorbinary": "^2.5.1",
"mkdirp": "^0.5.0",
"rimraf": "^3.0.0",
"rsvp": "^4.8.5",
"username-sync": "^1.0.2"
},
"devDependencies": {
"chai": "^4.2.0",
"istanbul": "^0.4.4",
"mocha": "^6.2.2",
"stat-mode": "^0.3.0"
},
"engines": {
"node": "8.* || >= 10.*"
},
"jscsConfig": {
"preset": "google",
"disallowMultipleVarDecl": true,
"maximumLineLength": 80,
"requireBlocksOnNewline": true,
"validateLineBreaks": "LF"
}
}