-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.16 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
{
"name": "cachekill",
"version": "3.0.2",
"description": "Simple command line cache busting tool which fingerprints files with a content hash.",
"author": "Eneko <[email protected]>",
"repository": "eneko89/cachekill",
"license": "MIT",
"type": "module",
"bin": "./cli.js",
"exports": {
"import": "./lib/esm/cachekill.js",
"default": "./lib/cjs/cachekill.js"
},
"types": "./types/cachekill.d.ts",
"scripts": {
"ts": "tsc -p tsconfig.json & tsc -p tsconfig-cjs.json",
"ts:watch": "tsc -p tsconfig.json --watch & tsc -p tsconfig-cjs.json --watch"
},
"dependencies": {
"commander": "~7.2.0",
"fast-glob": "~3.2.5",
"replace-in-file": "~6.2.0"
},
"devDependencies": {
"@types/node": "~15.0.1",
"typescript": "~4.2.4"
},
"engines": {
"node": ">=14.8.0"
},
"keywords": [
"cache",
"caching",
"busting",
"buster",
"bust",
"cachebuster",
"cache buster",
"cachebusting",
"cache busting",
"fingerprint",
"fingerprinting",
"version",
"versioning",
"revision",
"revisioning",
"assets",
"hash",
"npm",
"scripts",
"npm scripts",
"cli"
]
}