-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "redux-payload-validator",
"version": "1.0.1",
"description": "paylod validate middleware for flux statndard action.",
"main": "lib/index.js",
"author": "tomoyuki-tanaka",
"homepage": "https://github.com/tomoyuki-tanaka/redux-payload-validator",
"keywords": [
"redux",
"validation",
"flux-standard-action",
"middleware"
],
"repository": {
"type": "git",
"url": "https://github.com/tomoyuki-tanaka/redux-payload-validator.git"
},
"bugs": {
"url": "https://github.com/tomoyuki-tanaka/redux-payload-validator/issues"
},
"license": "MIT",
"scripts": {
"build": "babel src --out-dir lib",
"test": "NODE_ENV=test mocha test --compilers js:babel-register test/index.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.6.1",
"mocha": "^3.5.3",
"sinon": "^3.3.0",
"sinon-chai": "^2.13.0"
},
"dependencies": {
"flux-standard-action": "^1.2.0"
}
}