This repository was archived by the owner on Jun 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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
{
"name": "@small-tech/vite-plugin-sri",
"version": "1.0.1",
"description": "A Vite plugin that adds subresource integrity hashes to your index.html file at build time.",
"type": "module",
"main": "index.cjs",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"build": "rollup -c",
"test": "node test/index.js",
"coverage": "c8 node test/index.js"
},
"homepage": "https://github.com/small-tech/vite-plugin-sri#readme",
"bugs": {
"url": "https://github.com/small-tech/vite-plugin-sri/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/small-tech/vite-plugin-sri.git"
},
"files": ["index.js"],
"keywords": [
"Vite",
"Subresource",
"Integrity",
"SRI",
"plugin"
],
"author": {
"name": "Aral Balkan",
"email": "aral@small-tech.org",
"url": "https://ar.al"
},
"funding": {
"type": "foundation",
"url": "https://small-tech.org/fund-us/"
},
"license": "ISC",
"devDependencies": {
"c8": "^7.7.0",
"rollup": "^2.51.0",
"tape": "^5.2.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"node-fetch": "^2.6.1"
}
}