forked from pirosikick/redux-throttle-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "redux-throttle-actions",
"description": "A Redux middleware which throttles actions",
"version": "1.1.0",
"author": "Hiroyuki ANAI <[email protected]>",
"bugs": {
"url": "https://github.com/pirosikick/redux-throttle-actions/issues"
},
"dependencies": {
"lodash.isarray": "^4.0.0",
"lodash.throttle": "^4.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^4.1.3",
"babel-preset-es2015": "^6.9.0",
"eslint": "^2.12.0",
"fixpack": "^2.2.0",
"mocha": "^2.3.3",
"redux": "^3.5.2",
"sinon": "^1.17.2"
},
"files": [
"lib/*.js",
"package.json"
],
"homepage": "https://github.com/pirosikick/redux-throttle-actions",
"keywords": [
"middleware",
"redux",
"redux-middleware"
],
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pirosikick/redux-throttle-actions.git"
},
"scripts": {
"build": "babel src -d lib",
"fixpack": "fixpack",
"lint": "eslint src test",
"prepublish": "npm run test && npm run lint",
"test": "npm run build && mocha test/ --recursive --compilers js:babel-core/register",
"watch": "babel src -d lib -w & mocha --compilers js:babel-core/register -w"
}
}