-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 906 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
{
"name": "redux-batch-enhancer",
"version": "0.1.3",
"description": "Batch subscriber notification for an array of actions (including complex actions, e.g. thunks).",
"main": "index.js",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abc123s/redux-batch-enhancer.git"
},
"keywords": [
"redux",
"batch",
"batched",
"action",
"subscribe",
"reactjs",
"react"
],
"author": "Peter Zhang <Peter0Zhang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/abc123s/redux-batch-enhancer/issues"
},
"homepage": "https://github.com/abc123s/redux-batch-enhancer#readme",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-1": "^6.5.0"
}
}