-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1017 Bytes
/
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
{
"name": "redux-array",
"version": "1.0.1",
"description": "Redux middleware to dispatch array of actions",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vgabor/redux-array"
},
"bugs": {
"url": "https://github.com/vgabor/redux-array/issues"
},
"keywords": [
"redux",
"middleware",
"dispatch",
"list",
"array"
],
"authors": [
"Gabor Vizi <[email protected]> (https://vgabor.com)"
],
"license": "MIT",
"scripts": {
"start": "babel-node src/index.js",
"build": "eslint src && babel src -d lib",
"lint": "eslint src",
"test": "jest src/*"
},
"jest": {
"verbose": true
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-es2016": "^6.22.0",
"babel-preset-es2017": "^6.22.0",
"eslint": "^3.14.1",
"jest": "^18.1.0",
"redux": "^3.6.0"
}
}