-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 KB
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
{
"name": "redux-batcher",
"version": "0.0.7",
"description": "allow batched actions",
"main": "lib/index.js",
"repository": "https://github.com/tugorez/redux-batcher",
"author": "tugorez",
"license": "MIT",
"files": [
"es",
"lib",
"dist"
],
"scripts": {
"test": "jest",
"test:all": "yarn run lint && yarn run test:coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint --ignore-pattern coverage .",
"build": "npm run test:all && rimraf lib es dist && npm run build:es && npm run build:common && npm run build:umd",
"build:es": "babel src --out-dir es --ignore __tests__/*",
"build:common": "babel src --out-dir lib --ignore __tests__/*",
"build:umd": "webpack",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^19.0.2",
"rimraf": "^2.6.1",
"webpack": "^2.2.1"
},
"dependencies": {}
}