forked from coverhound/active-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.88 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": "@coverhound/active-redux",
"version": "1.0.1-beta.7",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"babel": "babel src --out-dir dist",
"dist": "rm -rf dist && npm run babel",
"dev": "npm run babel -- -w",
"lint": "eslint src",
"docs": "jsdoc -c .jsdoc.json",
"test": "jest",
"test:ci": "jest --ci --coverage",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "^0.16.1",
"object-path-immutable": "^0.5.0",
"object.entries": "^1.0.4",
"object.values": "^1.0.4",
"qs": "^6.5.1",
"reselect": "^3.0.1"
},
"devDependencies": {
"@coverhound/eslint-config-coverhound": "^1.0.1",
"axios-mock-adapter": "^1.10.0",
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^3.19.0",
"eslint-plugin-jest": "^20.0.3",
"jest": "^20.0.3",
"jest-cli": "^20.0.3",
"jsdoc": "^3.5.4",
"minami": "^1.2.3",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-test-renderer": "^15.6.1",
"redux": "^3.6.0",
"redux-thunk": "^2.0.0"
},
"peerDependencies": {
"redux": "^3.6.0",
"redux-thunk": "^2.0.0"
},
"optionalDependencies": {
"react": "^15.6.1",
"react-redux": "^5.0.6"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"/helpers/"
],
"snapshotSerializers": [
"<rootDir>/node_modules/enzyme-to-json/serializer"
],
"moduleNameMapper": {
"^active-redux(.*)": "<rootDir>/src$1",
"fixtures(.*)": "<rootDir>/__tests__/fixtures$1",
"helpers(.*)": "<rootDir>/__tests__/helpers$1"
}
}
}