-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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
{
"name": "redux-debounce-listener",
"version": "0.0.1",
"description": "A proxy creator for Redux store to debounce listeners.",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm test && npm run build",
"build": "rimraf lib && eslint src test && babel src --out-dir lib",
"test": "mocha --compilers js:babel/register --reporter spec test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nakamura-to/redux-debounce-listener.git"
},
"keywords": [
"redux",
"debounce"
],
"author": "nakamura-to",
"license": "MIT",
"bugs": {
"url": "https://github.com/nakamura-to/redux-debounce-listener/issues"
},
"homepage": "https://github.com/nakamura-to/redux-debounce-listener#readme",
"dependencies": {
"lodash.debounce": "^3.1.1"
},
"devDependencies": {
"babel": "^5.5.8",
"babel-core": "^5.6.18",
"babel-eslint": "^4.1.0",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^2.0.0",
"mocha": "^2.3.4",
"rimraf": "^2.4.4"
}
}