-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 944 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
{
"name": "redux-reducer-maker",
"version": "0.0.1",
"description": "A utility to create common reducers",
"main": "src/index.js",
"repository": "https://github.com/grifo/redux-reducer-maker",
"author": "Renatho - Grifo <[email protected]> (http://gri.fo)",
"license": "MIT",
"scripts": {
"lint": "eslint src test",
"test": "NODE_ENV=test jest --config .jest.json",
"test:watch": "yarn test -- --watch",
"test:coverage": "yarn test -- --coverage",
"prepush": "yarn run test:coverage && yarn run lint"
},
"keywords": [
"redux",
"reducer"
],
"bugs": {
"url": "https://github.com/grifo/redux-reducer-maker/issues"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-preset-airbnb": "^2.4.0",
"coveralls": "^2.13.1",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"jest": "^20.0.4"
}
}