1 |
3a515b92
|
cagy
|
{
|
2 |
|
|
"name": "cacache",
|
3 |
|
|
"publishConfig": {
|
4 |
|
|
"tag": "legacy"
|
5 |
|
|
},
|
6 |
|
|
"version": "12.0.4",
|
7 |
|
|
"cache-version": {
|
8 |
|
|
"content": "2",
|
9 |
|
|
"index": "5"
|
10 |
|
|
},
|
11 |
|
|
"description": "Fast, fault-tolerant, cross-platform, disk-based, data-agnostic, content-addressable cache.",
|
12 |
|
|
"main": "index.js",
|
13 |
|
|
"files": [
|
14 |
|
|
"*.js",
|
15 |
|
|
"lib",
|
16 |
|
|
"locales"
|
17 |
|
|
],
|
18 |
|
|
"scripts": {
|
19 |
|
|
"benchmarks": "node test/benchmarks",
|
20 |
|
|
"prerelease": "npm t",
|
21 |
|
|
"postrelease": "npm publish && git push --follow-tags",
|
22 |
|
|
"pretest": "standard",
|
23 |
|
|
"release": "standard-version -s",
|
24 |
|
|
"test": "cross-env CACACHE_UPDATE_LOCALE_FILES=true tap --coverage --nyc-arg=--all -J test/*.js",
|
25 |
|
|
"test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test"
|
26 |
|
|
},
|
27 |
|
|
"repository": "https://github.com/npm/cacache",
|
28 |
|
|
"keywords": [
|
29 |
|
|
"cache",
|
30 |
|
|
"caching",
|
31 |
|
|
"content-addressable",
|
32 |
|
|
"sri",
|
33 |
|
|
"sri hash",
|
34 |
|
|
"subresource integrity",
|
35 |
|
|
"cache",
|
36 |
|
|
"storage",
|
37 |
|
|
"store",
|
38 |
|
|
"file store",
|
39 |
|
|
"filesystem",
|
40 |
|
|
"disk cache",
|
41 |
|
|
"disk storage"
|
42 |
|
|
],
|
43 |
|
|
"author": {
|
44 |
|
|
"name": "Kat Marchán",
|
45 |
|
|
"email": "kzm@sykosomatic.org",
|
46 |
|
|
"twitter": "maybekatz"
|
47 |
|
|
},
|
48 |
|
|
"contributors": [
|
49 |
|
|
{
|
50 |
|
|
"name": "Charlotte Spencer",
|
51 |
|
|
"email": "charlottelaspencer@gmail.com",
|
52 |
|
|
"twitter": "charlotteis"
|
53 |
|
|
},
|
54 |
|
|
{
|
55 |
|
|
"name": "Rebecca Turner",
|
56 |
|
|
"email": "me@re-becca.org",
|
57 |
|
|
"twitter": "ReBeccaOrg"
|
58 |
|
|
}
|
59 |
|
|
],
|
60 |
|
|
"license": "ISC",
|
61 |
|
|
"dependencies": {
|
62 |
|
|
"bluebird": "^3.5.5",
|
63 |
|
|
"chownr": "^1.1.1",
|
64 |
|
|
"figgy-pudding": "^3.5.1",
|
65 |
|
|
"glob": "^7.1.4",
|
66 |
|
|
"graceful-fs": "^4.1.15",
|
67 |
|
|
"infer-owner": "^1.0.3",
|
68 |
|
|
"lru-cache": "^5.1.1",
|
69 |
|
|
"mississippi": "^3.0.0",
|
70 |
|
|
"mkdirp": "^0.5.1",
|
71 |
|
|
"move-concurrently": "^1.0.1",
|
72 |
|
|
"promise-inflight": "^1.0.1",
|
73 |
|
|
"rimraf": "^2.6.3",
|
74 |
|
|
"ssri": "^6.0.1",
|
75 |
|
|
"unique-filename": "^1.1.1",
|
76 |
|
|
"y18n": "^4.0.0"
|
77 |
|
|
},
|
78 |
|
|
"devDependencies": {
|
79 |
|
|
"benchmark": "^2.1.4",
|
80 |
|
|
"chalk": "^2.4.2",
|
81 |
|
|
"cross-env": "^5.1.4",
|
82 |
|
|
"require-inject": "^1.4.4",
|
83 |
|
|
"standard": "^12.0.1",
|
84 |
|
|
"standard-version": "^6.0.1",
|
85 |
|
|
"tacks": "^1.3.0",
|
86 |
|
|
"tap": "^12.7.0"
|
87 |
|
|
},
|
88 |
|
|
"config": {
|
89 |
|
|
"nyc": {
|
90 |
|
|
"exclude": [
|
91 |
|
|
"node_modules/**",
|
92 |
|
|
"test/**"
|
93 |
|
|
]
|
94 |
|
|
}
|
95 |
|
|
}
|
96 |
|
|
}
|