1 | {
|
---|
2 | "name": "cacache",
|
---|
3 | "version": "15.2.0",
|
---|
4 | "cache-version": {
|
---|
5 | "content": "2",
|
---|
6 | "index": "5"
|
---|
7 | },
|
---|
8 | "description": "Fast, fault-tolerant, cross-platform, disk-based, data-agnostic, content-addressable cache.",
|
---|
9 | "main": "index.js",
|
---|
10 | "files": [
|
---|
11 | "*.js",
|
---|
12 | "lib"
|
---|
13 | ],
|
---|
14 | "scripts": {
|
---|
15 | "benchmarks": "node test/benchmarks",
|
---|
16 | "preversion": "npm test",
|
---|
17 | "postversion": "npm publish",
|
---|
18 | "prepublishOnly": "git push origin --follow-tags",
|
---|
19 | "test": "tap",
|
---|
20 | "snap": "tap",
|
---|
21 | "coverage": "tap",
|
---|
22 | "test-docker": "docker run -it --rm --name pacotest -v \"$PWD\":/tmp -w /tmp node:latest npm test",
|
---|
23 | "lint": "npm run npmclilint -- \"*.*js\" \"lib/**/*.*js\" \"test/**/*.*js\"",
|
---|
24 | "npmclilint": "npmcli-lint",
|
---|
25 | "lintfix": "npm run lint -- --fix",
|
---|
26 | "postsnap": "npm run lintfix --"
|
---|
27 | },
|
---|
28 | "repository": "https://github.com/npm/cacache",
|
---|
29 | "keywords": [
|
---|
30 | "cache",
|
---|
31 | "caching",
|
---|
32 | "content-addressable",
|
---|
33 | "sri",
|
---|
34 | "sri hash",
|
---|
35 | "subresource integrity",
|
---|
36 | "cache",
|
---|
37 | "storage",
|
---|
38 | "store",
|
---|
39 | "file store",
|
---|
40 | "filesystem",
|
---|
41 | "disk cache",
|
---|
42 | "disk storage"
|
---|
43 | ],
|
---|
44 | "license": "ISC",
|
---|
45 | "dependencies": {
|
---|
46 | "@npmcli/move-file": "^1.0.1",
|
---|
47 | "chownr": "^2.0.0",
|
---|
48 | "fs-minipass": "^2.0.0",
|
---|
49 | "glob": "^7.1.4",
|
---|
50 | "infer-owner": "^1.0.4",
|
---|
51 | "lru-cache": "^6.0.0",
|
---|
52 | "minipass": "^3.1.1",
|
---|
53 | "minipass-collect": "^1.0.2",
|
---|
54 | "minipass-flush": "^1.0.5",
|
---|
55 | "minipass-pipeline": "^1.2.2",
|
---|
56 | "mkdirp": "^1.0.3",
|
---|
57 | "p-map": "^4.0.0",
|
---|
58 | "promise-inflight": "^1.0.1",
|
---|
59 | "rimraf": "^3.0.2",
|
---|
60 | "ssri": "^8.0.1",
|
---|
61 | "tar": "^6.0.2",
|
---|
62 | "unique-filename": "^1.1.1"
|
---|
63 | },
|
---|
64 | "devDependencies": {
|
---|
65 | "@npmcli/lint": "^1.0.1",
|
---|
66 | "benchmark": "^2.1.4",
|
---|
67 | "chalk": "^4.0.0",
|
---|
68 | "require-inject": "^1.4.4",
|
---|
69 | "tacks": "^1.3.0",
|
---|
70 | "tap": "^15.0.9"
|
---|
71 | },
|
---|
72 | "tap": {
|
---|
73 | "100": true,
|
---|
74 | "test-regex": "test/[^/]*.js"
|
---|
75 | },
|
---|
76 | "engines": {
|
---|
77 | "node": ">= 10"
|
---|
78 | }
|
---|
79 | }
|
---|