-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 808 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 808 Bytes
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
{
"name": "redux-cut",
"version": "1.0.4",
"description": "Middleware to block redux actions based on provided criteria.",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"clean": "rimraf dist",
"build": "babel src --out-dir dist",
"prepublish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/leonaves/redux-cut"
},
"keywords": [
"redux",
"cut",
"middleware",
"redux-middleware",
"flux"
],
"author": "Leon Aves",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"rimraf": "^2.5.2"
}
}