-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
34 lines (34 loc) · 971 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
{
"name": "gatsby-plugin-csp",
"version": "1.1.4",
"description": "Adds Content Security Policy to your Gatsby app.",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"csp",
"content-security-policy"
],
"author": "Thom Krupa <[email protected]>",
"homepage": "https://github.com/bejamas/gatsby-plugin-csp#readme",
"repository": "https://github.com/bejamas/gatsby-plugin-csp",
"bugs": {
"url": "https://github.com/bejamas/gatsby-plugin-csp/issues"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.0.0",
"lodash.flatten": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-preset-gatsby-package": "^0.1.3",
"cross-env": "^5.0.5"
}
}