-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
95 lines (95 loc) · 3.63 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
{
"name": "wildcat",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/nfl/react-wildcat.git"
},
"author": "engineers@nfl.com",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.0.0",
"babel-jest": "^20.0.3",
"babel-loader": "7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-module-resolver": "^2.5.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.1.10",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"co": "^4.6.0",
"codecov": "^3.3.0",
"conventional-changelog-cli": "^1.1.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.8.1",
"eslint-config-nfl": "^10.0.0",
"eslint-config-prettier": "^2.2.0",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-flowtype": "^2.25.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^6.7.1",
"estraverse": "^4.2.0",
"estraverse-fb": "^1.3.1",
"isomorphic-fetch": "^2.2.1",
"istanbul": "https://github.com/nfl/istanbul/tarball/0.4.5/combine-coverage",
"jest": "^20.0.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.0.0",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-phantomjs-shim": "^1.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^2.4.5",
"mocha-loader": "^1.1.0",
"phantomjs-prebuilt": "^2.1.7",
"prettier": "^1.6.1",
"prop-types": "^15.5.10",
"proxyquire": "^1.7.4",
"raf": "3.4.0",
"react": "16.6.1",
"react-dom": "16.6.1",
"react-wildcat-prefetch": "8.0.0",
"resolve": "^1.1.7",
"rimraf": "^2.5.2",
"shelljs": "^0.7.0",
"sinon": "^2.0.0-pre.5",
"sinon-chai": "^2.8.0",
"webpack": "4.29.6",
"webpack-cli": "3.1.1",
"whatwg-fetch": "^2.0.0"
},
"scripts": {
"changelog": "conventional-changelog -k packages/react-wildcat/package.json -p angular -i CHANGELOG.md -s",
"test:node": "env BABEL_ENV=test jest --env=node jest test/node.test.js --config .jestrc.node.json",
"test:browser": "env BABEL_ENV=test jest test/browser.test.js --config .jestrc.browser.json --setupTestFrameworkScriptFile=raf/polyfill"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {}
}