-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.4 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
{
"name": "workbox-add-integrity",
"version": "2.2.4",
"description": "A workbox plugin that add integrity to workbox precache manifest.",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"packageManager": "pnpm@9.6.0",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --fix src/**/*.ts",
"lint-check": "eslint src/**/*.ts --no-fix",
"prepare": "husky",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check src/**/*.ts"
},
"keywords": [
"workbox",
"precache",
"integrity"
],
"author": "rwv",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^9.8.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.0",
"vitest": "^2.0.4"
},
"repository": "github:rwv/workbox-add-integrity",
"homepage": "https://github.com/rwv/workbox-add-integrity#readme",
"bugs": {
"url": "https://github.com/rwv/workbox-add-integrity/issues"
},
"files": [
"lib",
"src"
],
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}