-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 928 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
{
"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": "fcsonlineb@gmail.com",
"name": "Ferran Basora"
},
"license": "MIT",
"repository": {
"url": "https://github.com/fcsonline/autocsp.git",
"type": "git"
},
"bugs": "https://github.com/fcsonline/autocsp/issues",
"devDependencies": {
"babel-cli": "6.0.0",
"babel-core": "6.5.2",
"babel-loader": "6.2.3",
"babel-preset-es2015": "6.5.0",
"http-server": "0.9.0",
"json-loader": "0.5.4"
},
"dependencies": {
"crypto-js": "3.1.6",
"underscore": "1.8.3",
"webpack": "1.12.13",
"zepto-browserify": "1.0.0"
}
}