-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 1007 Bytes
/
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
{
"name": "subresource-integrity-fallback",
"version": "0.0.0-development",
"description": "Subresource Integrity fallback script",
"main": "dist/sri.min.js",
"repository": {
"type": "git",
"url": "https://github.com/JackuB/subresource-integrity-fallback.git"
},
"keywords": [
"subresource",
"integrity",
"sri",
"security"
],
"author": "JackuB",
"license": "MIT",
"bugs": {
"url": "https://github.com/JackuB/subresource-integrity-fallback/issues"
},
"homepage": "https://sri.js.org",
"scripts": {
"test": "cypress run",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"cypress:open": "cypress open",
"serve": "npm run build && http-server ./ -p 8080",
"build": "terser src/sri.js --compress --mangle --output dist/sri.min.js"
},
"devDependencies": {
"cypress": "^3.1.5",
"http-server": "^0.11.1",
"semantic-release": "^8.0.3",
"terser": "^3.16.1"
},
"dependencies": {}
}