-
Notifications
You must be signed in to change notification settings - Fork 20
/
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": "react-tracker",
"version": "0.0.8",
"description": "Track user interaction with React based apps",
"main": "build/index.js",
"scripts": {
"build": "webpack",
"prepublish": "npm run build",
"test": "jest --coverage",
"test:cov": "nyc npm test",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov --token=44187b3f-41f9-49ff-bc36-0d10a9e5be65"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faouzioudouh/react-tracker.git"
},
"keywords": [
"React",
"tracking",
"track",
"analytics"
],
"author": "Faouzi Oudouh",
"license": "ISC",
"bugs": {
"url": "https://github.com/faouzioudouh/react-tracker/issues"
},
"homepage": "https://github.com/faouzioudouh/react-tracker#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.1.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "^3.6.0",
"nyc": "^11.4.1",
"codecov": "^3.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
},
"peerDependencies": {
"react": "*"
},
"jest": {
"setupTestFrameworkScriptFile": "./tests/setupTests.js"
}
}