forked from alinemorelli/react-gtm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.33 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
{
"name": "react-gtm-module",
"version": "2.0.8",
"description": "React Google Tag Manager Module",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"jest": "jest",
"test": "npm run lint && npm run jest",
"build": "babel src -d dist --ignore src/__tests__",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/alinemorelli/react-gtm"
},
"author": {
"name": "Aline Morelli",
"email": "aline.morelliw@gmail.com",
"url": "https://github.com/alinemorelli"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alinemorelli/react-gtm/issues"
},
"homepage": "",
"keywords": [
"react",
"reactjs",
"react-component",
"google tag manager",
"tag manager",
"gtm"
],
"peerDependencies": {
"react": "0.14.x || ^16.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "6.18.0",
"enzyme": "^3.3.0",
"eslint": "^3.9.0",
"jest": "^19.0.2",
"jest-cli": "^21.2.1",
"react": "^16.2.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"sinon": "^1.14.1"
},
"jest": {
"testRegex": "__tests__.*\\.spec.js$",
"collectCoverage": true
}
}