-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "combine-reducers-global-state",
"version": "0.0.0-development",
"description": "Like combineReducers that comes with redux but with global state passed through to individual reducers",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"author": "Velenir <velenir@gmail.com>",
"license": "MIT",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"lint": "eslint src/ __tests__/ --cache",
"test": "cross-env BABEL_ENV=commonjs jest",
"test:watch": "yarn test -- --watch",
"test:coverage": "yarn test -- --coverage",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "babel src --out-dir es",
"build": "yarn run build:es && yarn run build:commonjs",
"prepublish": "yarn build",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"redux",
"combine",
"reducer",
"global-state",
"global",
"state"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^8.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"commitizen": "^3.0.4",
"cross-env": "^5.0.4",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^4.5.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.62.0",
"jest": "^21.0.0",
"semantic-release": "^15.12.5"
},
"dependencies": {},
"engines": {
"node": ">=4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Velenir/combine-reducers-global-state.git"
}
}