-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.36 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
{
"name": "@recruit-tech/react-redux-analytics-ga",
"version": "0.4.2",
"description": "Google Analytics plugin for react-redux-analytics",
"main": "lib/index.js",
"keywords": [
"react",
"redux",
"analytics",
"Google Analytics"
],
"files": [
"src",
"lib"
],
"scripts": {
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch",
"clean": "rimraf lib/*",
"lint": "eslint src --cache",
"lint:fix": "eslint src --fix --cache",
"version": "npm-run-all clean build"
},
"author": "Recruit Technologies Co.,Ltd.",
"license": "MIT",
"dependencies": {
"is-in-browser": "^1.1.3",
"react": "^16.8.4",
"react-ga": "^2.5.5-0",
"react-redux-analytics": "^0.1.3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-destructuring": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"babel-eslint": "^7.2.3",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^15.0.0",
"eslint-plugin-dependencies": "^2.3.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.0",
"npm-run-all": "^4.0.2",
"rimraf": "^2.6.1"
}
}