forked from experium/react-async-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.16 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.16 KB
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
{
"name": "react-async-client",
"main": "lib/index.js",
"module": "./lib/index.js",
"author": "Vyacheslav Salakhutdinov <megazoll@gmail.com>",
"version": "0.4.0",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"deep-equal": "^1.0.1",
"enzyme": "^2.8.0",
"eslint": "^3.18.0",
"eslint-config-react-app": "^0.6.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.30.4",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"html-webpack-plugin": "^2.28.0",
"jest": "^19.0.2",
"prop-types": "^15.5.10",
"ramda": "^0.24.1",
"react": "^15.6.1",
"react-addons-test-utils": "^15.6.0",
"react-dom": "^15.6.1",
"react-redux": "^5.0.6",
"react-test-renderer": "^15.6.1",
"redux": "^3.7.2",
"redux-mock-store": "^1.2.3",
"redux-saga": "^0.16.0",
"rimraf": "^2.6.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"prop-types": "^15.5.0",
"ramda": ">=0.24",
"react": ">=15.4.2",
"react-dom": ">=15.4.2",
"react-redux": ">=5.0.3",
"redux": ">=3.6.0",
"redux-saga": ">=0.15.3"
},
"scripts": {
"clean": "rimraf lib dist",
"lint": "eslint src -f checkstyle -o reports/eslint.xml",
"lint:boil": "npm run lint -- --max-warnings 0",
"prebuild": "npm run clean",
"build": "webpack && babel src --out-dir lib",
"test": "jest",
"test:watch": "npm test -- --watch",
"publish-npm": "npm version 0.1.$BUILD_NUMBER && npm publish"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/test-utils/"
],
"collectCoverage": true,
"coverageDirectory": "reports",
"coverageReporters": [
"cobertura"
]
}
}