-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.12 KB
/
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": "gatsby-plugin-cookiehub",
"version": "1.0.0",
"description": "Gatsby.js plugin to add the cookiehub widget for GDPR compliance in europe.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__"
},
"repository": {
"type": "git",
"url": "git+https://github.com/100Shapes/gatsby-plugin-cookiehub.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"GDPR",
"cookie"
],
"author": "Michele Memoli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/100Shapes/gatsby-plugin-cookiehub/issues"
},
"homepage": "https://github.com/100Shapes/gatsby-plugin-cookiehub#readme",
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"dependencies": {
"@babel/runtime": "^7.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-preset-gatsby-package": "^0.1.2",
"cross-env": "^5.1.4"
}
}