-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.57 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
{
"name": "redux-branch",
"version": "0.1.3",
"description": "Branches for Redux.",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run eslint && npm run build && npm run bundle",
"build": "rm -rf lib && babel src --out-dir lib",
"bundle": "rm -rf bundles && webpack",
"test": "jest",
"eslint": "eslint src/**"
},
"repository": {
"type": "git",
"url": "https://github.com/stephenbunch/redux-branch"
},
"author": "Stephen Bunch",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^16.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"jest": "^16.0.1",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"webpack": "^1.13.2"
},
"peerDependencies": {
"react": "^15.3.2"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"jsx",
"json"
],
"testPathDirs": [
"<rootDir>/src/"
],
"testRegex": "\\.spec\\.jsx?$"
}
}