-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.5 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
{
"name": "redux-batch-actions-enhancer",
"version": "1.0.1",
"description": "redux enhancer to handle batched actions and reduce the calls of subscribers",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/laysent/redux-batch-actions-enhancer.git"
},
"author": {
"name": "LaySent",
"email": "[email protected]",
"url": "https://github.com/laysent"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/laysent/redux-batch-actions-enhancer/issues"
},
"homepage": "https://github.com/laysent/redux-batch-actions-enhancer#readme",
"keywords": [
"redux",
"redux-enhancer",
"enhancer",
"middleware",
"batch-actions"
],
"devDependencies": {
"@types/jest": "^20.0.8",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.9.0",
"jest": "^20.0.4",
"redux": "^3.7.2",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2"
},
"dependencies": {},
"scripts": {
"build": "rollup -c ./rollup.config.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"lint": "eslint ./src"
}
}