-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "react-metrics-service",
"version": "0.2.2",
"description": "React adapter for metrics services like Google Analytics, Tealium or Comcast.",
"main": "dist/index.js",
"scripts": {
"start": "budo example.js --live --open --host=localhost -- -t babelify",
"test": "jest",
"clean": "rm -rf dist",
"transpile": "babel src -D -d dist --ignore '__tests__'",
"bundle": "webpack --config webpack.config.js",
"build": "npm run lint && npm run clean && npm run transpile && npm run bundle",
"lint": "eslint ./src"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/team-767/react-metrics-service.git"
},
"keywords": [
"google analytics",
"tealium",
"comcast",
"analytics",
"react",
"metrics-service",
"isomorphic",
"inline-style",
"high-order-component"
],
"author": "Team 767",
"license": "ISC",
"bugs": {
"url": "https://github.com/team-767/react-metrics-service/issues"
},
"homepage": "https://github.com/team-767/react-metrics-service#readme",
"dependencies": {
"recompose": ">= 0.19.0 < 1.0",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "^15.5.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.4",
"babel-jest": "^13.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"budo": "^8.3.0",
"enzyme": "^2.8.2",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.7.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.0.1",
"jest-cli": "^13.0.0",
"react": "^15.0.0",
"react-test-renderer": "^15.0.0",
"react-dom": "^15.0.0",
"webpack": "^1.13.0"
},
"jest": {
"unmockedModulePathPatterns": [
"react",
"react-dom",
"fbjs",
"enzyme"
],
"rootDir": "./src"
},
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"jasmine": true,
"jest": true
},
"parser": "babel-eslint",
"rules": {
"semi": 0,
"new-cap": 0,
"no-underscore-dangle": 0,
"no-console": [
2,
{
"allow": [
"warn",
"error",
"info"
]
}
]
}
}
}