forked from leoselig/redux-entitize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "redux-entitize",
"version": "0.5.5",
"description": "Manage all entities in a normalized redux state.",
"main": "lib/index.js",
"repository": "git@github.com:leoselig/redux-entitize.git",
"author": "Leo Selig <dev.selig@gmail.com>",
"license": "MIT",
"scripts": {
"compile": "rm -rf lib/ && babel src/ --out-dir lib/ && yarn run generate-flow-libdefs",
"generate-flow-libdefs": "yarn run flow-copy-source src/ lib/",
"test-dev": "jest --config=jest.config.json --notify --watch",
"test-ci": "jest --config=jest.config.json",
"lint": "yarn run eslint .src ./test",
"lint-fix": "yarn run lint -- --fix",
"flow-check": "flow --max-warnings=0",
"flow-typed": "flow-typed",
"ci-pipeline": "yarn run test-ci && yarn run lint && yarn run flow-check",
"prepublish": "yarn run compile",
"changelog": "yarn run strangelog",
"changelog-generate": "strangelog generate --outFile CHANGELOG.md"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^23.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-1": "^6.24.1",
"deep-freeze": "^0.0.1",
"eslint": "^4.19.1",
"eslint-plugin-flowtype": "^2.48.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-prettier": "^2.6.0",
"flow-bin": "^0.73.0",
"flow-copy-source": "^1.3.0",
"flow-typed": "^2.4.0",
"jest": "^23.0.1",
"prettier": "^1.13.2",
"redux": "^4.0.0",
"reselect": "^3.0.1",
"strangelog": "^2.0.2"
},
"dependencies": {
"lodash": "^4.17.10",
"normalizr": "^3.2.3"
},
"peerDependencies": {
"reselect": "^3.0.1"
}
}