forked from gravplats/redux-batch-middleware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1001 Bytes
/
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-batch-middleware",
"version": "0.2.0",
"description": "Batch Redux actions",
"license": "MIT",
"repository": "mrydengren/redux-batch-middleware",
"keywords": [
"Redux",
"Batch"
],
"main": "lib/index",
"module": "es/index",
"jsnext:main": "es/index",
"files": [
"es",
"lib",
"modules"
],
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-latest": "^6.16.0",
"eslint": "^3.12.2",
"eslint-config-coderesque": "^3.0.1",
"faucet": "^0.0.1",
"redux": "^3.3.1",
"tape": "^4.6.3"
},
"scripts": {
"build": "yarn run build:commonjs && yarn run build:es",
"build:commonjs": "./scripts/run-build-commonjs.sh",
"build:es": "./scripts/run-build-es.sh",
"eslint": "./scripts/run-eslint.sh",
"tape": "./scripts/run-tape.sh",
"pretest": "yarn run eslint",
"test": "yarn run tape",
"posttest": "yarn run build",
"preversion": "yarn test",
"prepublish": "yarn run build"
}
}