forked from nytimes/react-tracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.38 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
{
"name": "react-tracking",
"version": "5.2.1",
"description": "Declarative tracking for React apps.",
"author": "The New York Times",
"contributors": [
{
"name": "Nicole Baram",
"email": "[email protected]",
"url": "https://github.com/nicolehollyNYT"
},
{
"name": "Oleh Ziniak",
"email": "[email protected]",
"url": "https://github.com/oziniak"
},
{
"name": "Ivan Kravchenko",
"email": "[email protected]",
"url": "https://github.com/ivankravchenko"
},
{
"name": "Jeremy Gayed",
"email": "[email protected]",
"url": "https://github.com/tizmagik"
}
],
"license": "Apache-2.0",
"main": "build/index.js",
"files": ["build"],
"repository": {
"type": "git",
"url": "git+https://github.com/NYTimes/react-tracking"
},
"keywords": ["nyt", "react", "declarative", "tracking", "metrics", "layer"],
"homepage": "https://github.com/NYTimes/react-tracking",
"dependencies": {
"deepmerge": "^2.1.0",
"hoist-non-react-statics": "^2.5.0"
},
"peerDependencies": {
"babel-runtime": "^6.20.0",
"react": "^15.0.0",
"prop-types": "^15.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"enzyme": "^2.8.2",
"eslint": "^3.12.2",
"eslint-config-kyt": "^0.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"husky": "^0.14.3",
"jest": "^20.0.1",
"lint-staged": "^4.3.0",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-test-renderer": "^15.6.2"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write --config ./.prettierrc.json --config-precedence prefer-file",
"git add"
]
},
"scripts": {
"prepare": "npm run lint && npm run test && npm run build",
"build": "babel --out-dir build src --ignore src/__tests__",
"build:watch": "npm run build -- --watch",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint ./src",
"precommit": "lint-staged"
}
}