forked from tappleby/redux-batched-subscribe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "redux-batched-subscribe",
"version": "0.1.6",
"description": "redux store enhancer which allows batching subscribe notifications.",
"main": "lib/index.js",
"files": [
"lib",
"README.md"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src",
"test": "mocha --compilers js:babel/register --recursive src/**/*-test.js",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build"
},
"keywords": [
"redux",
"batched",
"react",
"reactjs",
"performance",
"store"
],
"author": "Terry Appleby <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tappleby/redux-batched-subscribe.git"
},
"bugs": {
"url": "https://github.com/tappleby/redux-batched-subscribe/issues"
},
"homepage": "https://github.com/tappleby/redux-batched-subscribe",
"devDependencies": {
"babel": "^5.8.20",
"babel-core": "^5.8.20",
"eslint": "^1.0.0",
"eslint-config-airbnb": "2.1.1",
"expect": "^1.13.4",
"mocha": "^2.2.5",
"rimraf": "^2.5.0"
}
}