-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 905 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
{
"name": "gatsby-plugin-splitbee",
"description": "Gatsby plugin to add Splitbee to a Gatsby site",
"version": "0.2.0",
"author": "Devan Beitel <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DevanB/gatsby-plugin-splitbee"
},
"main": "index.js",
"files": [
"gatsby-ssr.js"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"splitbee"
],
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.5"
}
}