forked from react-ga/react-ga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.84 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
{
"name": "react-ga",
"version": "2.5.7",
"description": "React Google Analytics Module.",
"main": "dist/react-ga.js",
"module": "dist/esm/index.js",
"scripts": {
"start": "webpack-dev-server --config demo/webpack.config.js --hot --inline",
"test": "npm run lint && npm run test-only",
"test-only": "BABEL_ENV=test nyc mocha",
"build": "npm run build:umd && npm run build:esm",
"build:esm": "BABEL_ENV=esm babel src --out-dir dist/esm",
"build:umd": "BABEL_ENV=umd webpack --mode=production",
"lint": "eslint src webpack.config.js test --ext .js,.jsx",
"preversion": "npm test && npm run lint",
"version": "node ./version-bower.js && npm run build && git add -A dist bower.json",
"postversion": "git push && git push --tags && npm publish"
},
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:react-ga/react-ga"
},
"keywords": [
"React",
"GA",
"Google Analytics",
"Universal Analytics"
],
"author": "@adamlofting",
"contributors": [
"@toolness"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/react-ga/react-ga/issues"
},
"homepage": "https://github.com/react-ga/react-ga",
"nyc": {
"include": [
"src/**/*"
],
"require": [
"@babel/register"
],
"sourceMap": false,
"instrument": false,
"cache": true,
"all": true,
"reporter": [
"lcov",
"cobertura",
"text-summary"
],
"report-dir": "./coverage"
},
"peerDependencies": {
"prop-types": "^15.6.0",
"react": "^15.6.2 || ^16.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-plugin-rewire": "^1.2.0",
"conventional-changelog-cli": "^1.3.2",
"enzyme": "^2.9.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-react": "^7.1.0",
"fs-extra": "^4.0.2",
"html-webpack-plugin": "^3.2.0",
"jsdom": "~9.12.0",
"jsdom-global": "~2.1.1",
"mocha": "^3.5.0",
"nyc": "~13.1.0",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^15.0.1",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"rewire": "^2.5.2",
"should": "^12.0.0",
"sinon": "^3.2.1",
"terser-webpack-plugin": "^1.1.0",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {}
}