-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
{
"name": "entities-reducer",
"scripts": {
"test": "jest",
"build": "rimraf dist && babel --copy-files --out-dir dist --ignore *.spec.js,__mocks__,__snapshots__ src",
"release": "semantic-release pre && npm publish && semantic-release post",
"lint": "eslint .",
"report-coverage": "codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"version": "0.0.0-development",
"description": "Redux normalized entity reducer",
"main": "dist/index.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/kwelch/entities-reducer.git"
},
"bugs": {
"url": "https://github.com/kwelch/entities-reducer/issues"
},
"homepage": "https://github.com/kwelch/entities-reducer.git#readme",
"author": "Kyle Welch <kwelch0626@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.5.2",
"babel-preset-stage-2": "^6.24.1",
"codecov": "^1.0.1",
"eslint": "^3.14.1",
"jest-cli": "^20.0.4",
"rimraf": "^2.5.4",
"semantic-release": "^6.3.2"
},
"eslintConfig": {
"extends": [
"eslint:recommended"
],
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true,
"jest": true
}
},
"peerDependencies": {
"redux": ">=3.0.3"
},
"dependencies": {
"flux-standard-action": "^1.2.0",
"redux": "^3.6.0"
}
}