-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·47 lines (47 loc) · 1.06 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
{
"license": "MIT",
"name": "react-with-analytics",
"description": "Google Analytics for React apps with ease.",
"version": "0.0.1",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sonaye/react-with-analytics.git"
},
"dependencies": {
"prop-types": "15.6.1"
},
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"react-ga": "^2.5.3"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.3",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "4.19.1",
"eslint-config-airbnb": "16.1.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-react": "7.9.1",
"react-scripts": "1.1.4"
},
"scripts": {
"lint": "eslint src",
"prebuild": "rm -rf lib",
"build": "NODE_ENV=production babel src --out-dir lib"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"files": [
"lib"
]
}