-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
132 lines (132 loc) · 4.35 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "react-gpt",
"version": "2.0.2",
"description": "A react display ad component using Google Publisher Tag",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"contributors": [
{
"name": "NFL Engineering"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nfl/react-gpt"
},
"keywords": [
"react-gpt",
"nfl",
"react",
"ad",
"gpt",
"google publisher tags"
],
"bugs": {
"url": "https://github.com/nfl/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",
"invariant": "^2.2.2",
"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",
"bundlesize": "^0.14.4",
"chai": "^3.4.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.8.1",
"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-mocha": "4.11.0",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "7.3.0",
"express": "^4.13.4",
"history": "^4.3.0",
"isparta-loader": "^2.0.0",
"karma": "^1.3.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-tap-reporter": "0.0.6",
"karma-webpack": "^1.7.0",
"mocha": "^3.1.2",
"phantom": "^2.0.4",
"prettier": "^1.9.2",
"prop-types": "^15.5.10",
"querystring": "^0.2.0",
"radium": "^0.18.1",
"react": "^16.0.0",
"react-addons-test-utils": "^15.0.1",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.2",
"serve-static": "^1.10.2",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0",
"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",
"react-dom": "^15.0.1 || ^16.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",
"bundlesize": "npm run build:umd:min && bundlesize",
"clean": "rimraf lib coverage dist lib es",
"compile": "babel src --out-dir lib",
"examples":
"webpack-dev-server --config examples/webpack.config.js --content-base examples/apps --inline",
"lint": "eslint --fix src test examples",
"start":
"npm run build && env BABEL_ENV=examples node examples/server/index.js",
"pretest": "npm run build",
"prepublish":
"npm run build && npm run build:es && npm run build:umd && npm run build:umd:min",
"test": "npm run lint && karma start",
"update-apilist": "node ./scripts/updateAPIList.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bundlesize": [
{
"path": "./dist/react-gpt.min.js",
"maxSize": "8.53 kB"
}
]
}