forked from fcsonline/autocsp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 954 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
37
38
39
40
41
{
"name": "autocsp",
"description": "Tool to generate a valid Content Security Policy header for your current webpage, with nonce, integrity hashes, etc.",
"version": "0.1.0",
"keywords": [
"csp",
"content",
"security",
"policy",
"headers",
"automatic"
],
"scripts": {
"build": "webpack"
},
"author": {
"email": "[email protected]",
"name": "Code Guardian"
},
"license": "MIT",
"repository": {
"url": "https://github.com/cgnl/autocsp.git",
"type": "git"
},
"bugs": "https://github.com/cgnl/autocsp/",
"devDependencies": {
"@babel/preset-env": "^7.23.9",
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"babel-loader": "^9.1.3",
"http-server": "^14.1.1",
"json-loader": "0.5.7",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"crypto-js": "^4.2.0",
"underscore": "^1.13.6",
"webpack": "^5.90.1",
"zepto-browserify": "1.0.0"
}
}