-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 881 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-intercom-spa",
"description": "Gatsby plugin to add intercom onto a site",
"version": "0.3.0",
"author": "Tal Bereznitskey <berzniz@gmail.com>",
"files": [
"gatsby-browser.js",
"gatsby-ssr.js"
],
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.5"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"intercom"
],
"license": "MIT",
"main": "index.js",
"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"
},
"dependencies": {
"babel-runtime": "^6.26.0"
},
"repository": {
"type": "git",
"url": "https://github.com/toriihq/gatsby-plugin-intercom-spa.git"
}
}