-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.77 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
{
"name": "k-redux-saga-tester",
"version": "1.0.0",
"description": "Test your sagas (redux-saga) with ease, compatible with Jest snapshots !",
"main": "lib/index.js",
"repository": "[email protected]:unirakun/k-redux-saga-tester.git",
"author": "Fabien JUIF <[email protected]>",
"license": "MIT",
"scripts": {
"lint:js": "eslint --ext js,jsx src",
"lint": "npm-run-all --parallel lint:*",
"build": "rollup -c ./misc/rollup.config.js",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"ci": "npm-run-all --parallel coveralls lint"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"jest": "^20.0.4",
"npm-run-all": "^4.0.2",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"jest": {
"transform": {
".*": "./node_modules/babel-jest"
}
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"plugins": [],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"plugins": [
"babel"
],
"globals": {
"fetch": false
},
"env": {
"browser": true
},
"rules": {
"semi": [
2,
"never"
]
}
}
}