-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
52 lines (52 loc) · 1.66 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
50
51
52
{
"name": "redux-ignore",
"version": "1.2.5",
"description": "higher-order reducer to ignore redux actions",
"main": "lib/index.js",
"scripts": {
"clean": "./node_modules/.bin/rimraf lib",
"build": "./node_modules/.bin/babel src --out-dir lib",
"lint": "./node_modules/.bin/eslint src test",
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive",
"test:watch": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --recursive --watch",
"test:cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run lint && npm run test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/omnidan/redux-ignore.git"
},
"keywords": [
"redux",
"undo",
"redo",
"flux",
"time travel"
],
"author": "Daniel Bugl <[email protected]> (https://github.com/omnidan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/omnidan/redux-ignore/issues"
},
"homepage": "https://github.com/omnidan/redux-ignore",
"devDependencies": {
"assert": "^1.3.0",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-env": "^1.6.1",
"eslint": "^3.3.1",
"eslint-config-standard": "^5.1.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"expect": "^1.14.0",
"isparta": "^4.0.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.2",
"should": "^11.1.0"
},
"dependencies": {
"redux": "^3.3.1"
}
}