-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gatsby-plugin-analytics-without-segment",
"version": "1.0.7",
"description": "A Gatsby plugin to use Segments open-source analytics library (analytics.js) WITHOUT using the paid Segment service (segment.com)",
"keywords": [
"standalone",
"free",
"analytics",
"analyticsjs",
"analytics.js",
"gatsby",
"gatsby-plugin",
"without",
"segment"
],
"main": "gatsby-ssr.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thebarty/gatsby-plugin-analytics-without-segment.git"
},
"author": "Henning <[email protected]>",
"scripts": {
"lint": "standard",
"build": "babel src --out-dir .",
"build-watch": "npx babel src --out-dir . --watch",
"publish-to-npm": "npm run build; npm publish .;"
},
"peerDependencies": {
"react": "^15.0.0-0 || ^16.0.0-0"
},
"dependencies": {
"analytics-js-without-segment": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react": "^15.6.1",
"standard": "^10.0.2"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"gatsby-ssr.js",
"gatsby-browser.js"
]
},
"bugs": {
"url": "https://github.com/thebarty/gatsby-plugin-analytics-without-segment/issues"
},
"homepage": "https://github.com/thebarty/gatsby-plugin-analytics-without-segment#readme"
}