-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "redux-rules",
"version": "0.0.7",
"description": "Rules API for Redux.",
"main": "dist/index.js",
"scripts": {
"install:peers": "npm info \"$PKG\" peerDependencies --json | command sed 's/[\\{\\},]//g ; s/: /@/g' | xargs npm install \"$PKG\"",
"build": "npm run build:commonjs",
"build:commonjs": "babel src --out-dir dist --ignore __tests__/*",
"test": "tape -r babel-register src/**/__tests__/**/*.js | tap-diff",
"test:watch": "tape-watch -r babel-register src/**/__tests__/**/*.js -p tap-diff",
"clean": "rimraf lib"
},
"keywords": [
"redux",
"rules"
],
"author": "",
"license": "MIT",
"repository": "choko-org/redux-rules",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"eslint": "^3.0.1",
"eslint-config-rackt": "^1.1.1",
"eslint-config-standard": "^5.3.1",
"eslint-plugin-promise": "^1.3.2",
"eslint-plugin-standard": "^1.3.2",
"rimraf": "^2.5.4",
"tap-diff": "^0.1.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.2",
"tape-watch": "^2.2.3"
},
"peerDependencies": {
"redux": "^3.6.0"
}
}