-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 2.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
{
"name": "overwatch-team-comps",
"version": "0.0.1",
"description": "Plan your Overwatch team composition per map and map point.",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheshire137/overwatch-team-comps.git"
},
"keywords": [
"overwatch"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cheshire137/overwatch-team-comps/issues"
},
"scripts": {
"style": "node_modules/.bin/eslint --ext .js --ext .jsx app/assets/javascripts/application.js app/assets/javascripts/components app/assets/javascripts/models spec/javascript spec/setup-jest.js",
"unit-test": "node_modules/.bin/jest",
"test": "npm run style && npm run unit-test"
},
"homepage": "https://github.com/cheshire137/overwatch-team-comps",
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babelify": "^7.3.0",
"browserify": "^14.1.0",
"browserify-incremental": "^3.1.1",
"immutability-helper": "^2.1.2",
"promise-polyfill": "^6.0.2",
"prop-types": "^15.5.6",
"react": "^15.4.2",
"react-debounce-input": "^2.4.2",
"react-dom": "^15.4.2",
"react-onclickoutside": "^6.4.0",
"react-render-html": "^0.2.0",
"react-router": "^3.0.2",
"react-textarea-autosize": "^5.0.7",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-jest": "^18.0.0",
"enzyme": "^2.7.1",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"fetch-mock": "^5.9.4",
"jest": "^18.1.0",
"jest-cli": "^18.1.0",
"jest-enzyme": "^2.1.2",
"react-addons-test-utils": "^15.4.2",
"react-shallow-render": "^1.0.1",
"react-test-renderer": "^15.4.2"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"app/assets/javascripts/**/*.{js,jsx}",
"!app/assets/javascripts/application.js",
"!app/assets/javascripts/cable.js",
"!app/assets/javascripts/components.js"
],
"setupFiles": [
"<rootDir>/spec/setup-jest.js"
]
}
}