-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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": "rollup-plugin-sri",
"version": "1.3.4",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"license": "MIT",
"author": {
"name": "Jonas Kruckenberg",
"email": "[email protected]"
},
"description": "Add subresource integrity tags to all your html files 🔒",
"keywords": [
"rollup-plugin",
"subresource",
"subresource-integrity",
"security"
],
"repository": "https://github.com/JonasKruckenberg/rollup-plugin-sri.git",
"bugs": "https://github.com/JonasKruckenberg/rollup-plugin-sri/issues",
"homepage": "https://github.com/JonasKruckenberg/rollup-plugin-sri",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -cw",
"build": "rollup -c",
"test": "jest",
"coverage": "jest --collectCoverage",
"docs": "typedoc --options ./typedoc.json",
"release": "yarn build && yarn changeset publish"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@rollup/plugin-html": "^0.2.3",
"@types/cheerio": "^0.22.18",
"@types/jest": "^26.0.4",
"@types/node": "^15.0.1",
"@types/node-fetch": "^2.5.7",
"codecov": "^3.8.1",
"jest": "^26.1.0",
"rollup": "^2.44.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.34",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.0.3",
"vite": "^2.1.5"
}
}