-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
81 lines (81 loc) · 2.06 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "cacache",
"version": "5.0.3",
"cache-version": {
"content": "1",
"index": "1"
},
"description": "General content-addressable cache system that maintains a filesystem registry of file data.",
"main": "index.js",
"files": [
"*.js",
"lib"
],
"scripts": {
"preversion": "npm t",
"postversion": "npm publish && git push --follow-tags",
"pretest": "standard lib test *.js",
"test": "nyc -- tap -J test/*.js",
"test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": "https://github.com/zkat/cacache",
"keywords": [
"cache",
"content-addressable cache",
"file store"
],
"author": {
"name": "Kat Marchán",
"email": "[email protected]",
"twitter": "maybekatz"
},
"contributors": [
{
"name": "Charlotte Spencer",
"email": "[email protected]",
"twitter": "charlotteis"
},
{
"name": "Rebecca Turner",
"email": "[email protected]"
}
],
"license": "CC0-1.0",
"dependencies": {
"@npmcorp/move": "^1.0.0",
"bluebird": "^3.4.7",
"checksum-stream": "^1.0.2",
"chownr": "^1.0.1",
"dezalgo": "^1.0.3",
"graceful-fs": "^4.1.10",
"lockfile": "^1.0.2",
"mississippi": "^1.2.0",
"mkdirp": "^0.5.1",
"once": "^1.4.0",
"promise-inflight": "^1.0.1",
"rimraf": "^2.6.1",
"slide": "^1.1.6",
"split": "^1.0.0",
"unique-filename": "^1.1.0"
},
"devDependencies": {
"glob": "^7.1.1",
"nyc": "^10.0.0",
"require-inject": "^1.4.0",
"standard": "^9.0.0",
"tacks": "^1.2.2",
"tap": "^10.3.0",
"weallbehave": "^1.0.0",
"weallcontribute": "^1.0.8"
},
"config": {
"nyc": {
"exclude": [
"node_modules/**",
"test/**"
]
}
}
}