-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "hash-static",
"version": "1.0.0",
"license": "MIT",
"description": "Utility to hash static assets",
"author": "Eric Liu (https://github.com/metonym)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"test:tdd": "jest --watch",
"prepack": "tsc"
},
"dependencies": {
"chalk": "^3.0.0",
"htmlnano": "^0.2.4",
"posthtml": "^0.12.0",
"posthtml-hash": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/shelljs": "^0.8.5",
"jest": "25.5.4",
"shelljs": "^0.8.4",
"ts-jest": "^25.5.1",
"typescript": "^3.8.3"
},
"jest": {
"preset": "ts-jest"
},
"bin": {
"hash-static": "cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/metonym/hash-static.git"
},
"homepage": "https://github.com/metonym/hash-static",
"bugs": "https://github.com/metonym/hash-static/issues",
"keywords": [
"hash",
"static",
"production",
"cache"
],
"files": [
"cli.js",
"lib"
]
}