forked from nfl/react-gpt
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
101 lines (101 loc) · 3.17 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
{
"name": "@atmedia/react-gpt",
"version": "2.1.19",
"description": "A react display ad component using Google Publisher Tag",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"contributors": [
{
"name": "NFL Engineering and AT Media"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apartmenttherapy/react-gpt"
},
"keywords": [
"react-gpt",
"nfl",
"react",
"ad",
"gpt",
"google publisher tags"
],
"bugs": {
"url": "https://github.com/apartmenttherapy/react-gpt/issues"
},
"files": [
"*.md",
"docs",
"es",
"src",
"dist",
"lib"
],
"dependencies": {
"deep-equal": "^1.0.1",
"eventemitter3": "^2.0.2",
"exenv": "^1.2.2",
"hoist-non-react-statics": "^1.0.5",
"throttle-debounce": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^8.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-webpack-alias": "^2.1.1",
"babel-preset-es2015-without-strict": "^0.0.4",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"codecov.io": "^0.1.6",
"conventional-changelog-cli": "^1.2.0",
"core-js": "^2.2.2",
"cz-conventional-changelog": "^1.1.6",
"eslint": "4.7.0",
"eslint-config-nfl": "12.0.0",
"eslint-config-prettier": "^2.5.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "7.3.0",
"express": "^4.13.4",
"history": "^4.3.0",
"prettier": "^1.9.2",
"prop-types": "^15.5.10",
"querystring": "^0.2.0",
"radium": "^0.26.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^2.5.2",
"serve-static": "^1.10.2",
"webpack": "^1.4.13",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.0.1 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.1 || ^16.0.0 || ^17.0.0"
},
"scripts": {
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"build": "npm run clean && npm run compile",
"build:es": "BABEL_ENV=es babel --copy-files ./src -d es",
"build:umd": "NODE_ENV=development webpack src/index.js dist/react-gpt.js",
"build:umd:min": "NODE_ENV=production webpack -p src/index.js dist/react-gpt.min.js",
"clean": "rimraf lib coverage dist lib es",
"compile": "babel src --out-dir lib",
"lint": "eslint --fix src test examples",
"pretest": "npm run build",
"prepublish": "npm run build && npm run build:es && npm run build:umd && npm run build:umd:min"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}