This repository has been archived by the owner on Jun 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 3.12 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@signavio/kraken",
"version": "9.0.7",
"description": "Load API entities",
"repository": "git@github.com:signavio/kraken.git",
"main": "lib/index.js",
"module": "lib-es6/index.js",
"sideEffects": false,
"scripts": {
"clean": "rimraf lib lib-es6",
"prebuild": "yarn run clean",
"build": "yarn build:es5 && yarn build:es6",
"build:es5": "BABEL_ENV=es5 babel src --out-dir lib",
"build:es6": "BABEL_ENV=es6 babel src --out-dir lib-es6",
"postbuild": "yarn flow-copy",
"flow-copy": "yarn flow-copy:es5 && yarn flow-copy:es6",
"flow-copy:es5": "flow-copy-source src lib",
"flow-copy:es6": "flow-copy-source src lib-es6",
"lint": "eslint src test",
"test": "NODE_ENV=test mocha",
"coverage": "istanbul cover _mocha --report cobertura --include-all-sources --x \"**/lib/**\"",
"prepublishOnly": "yarn build",
"renovate": "renovate",
"flow": "flow check",
"find-circular-dependencies": "madge --circular --warning --no-spinner src",
"codecov-upload": "codecov"
},
"author": "Jan-Felix Schwarz",
"license": "UNLICENSED",
"dependencies": {
"hoist-non-react-statics": "^3.0.0",
"invariant": "^2.2.2",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.4",
"reduce-reducers": "^1.0.0",
"shallow-equal": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "7.10.1",
"@babel/core": "7.10.2",
"@babel/plugin-proposal-class-properties": "7.10.1",
"@babel/plugin-proposal-export-namespace-from": "7.10.1",
"@babel/plugin-proposal-function-bind": "7.10.1",
"@babel/plugin-proposal-object-rest-spread": "7.10.1",
"@babel/plugin-proposal-optional-chaining": "7.10.1",
"@babel/plugin-transform-flow-strip-types": "7.10.1",
"@babel/plugin-transform-runtime": "7.10.1",
"@babel/polyfill": "7.10.1",
"@babel/preset-env": "7.10.2",
"@babel/preset-react": "7.10.1",
"@babel/register": "7.10.1",
"babel-eslint": "10.1.0",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-lodash": "3.3.4",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"chai": "4.2.0",
"chai-enzyme": "1.0.0-beta.1",
"cheerio": "0.22.0",
"codecov": "3.7.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "7.2.0",
"eslint-config-react-app": "5.2.1",
"eslint-plugin-flowtype": "5.1.3",
"eslint-plugin-import": "2.21.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.20.0",
"eslint-plugin-react-hooks": "4.0.4",
"fetch-mock": "9.10.1",
"flow-bin": "0.127.0",
"flow-copy-source": "2.0.9",
"install": "0.13.0",
"istanbul": "1.1.0-alpha.1",
"jsdom": "16.2.2",
"madge": "3.9.2",
"mocha": "8.0.1",
"normalizr": "3.6.0",
"prettier": "2.0.5",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-redux": "7.2.0",
"redux": "4.0.5",
"redux-saga": "1.1.3",
"rimraf": "3.0.2",
"sinon": "9.0.2",
"sinon-chai": "3.5.0",
"xunit-file": "1.0.0"
},
"peerDependencies": {
"normalizr": "^3.2.4",
"react": "^16.8.3",
"react-redux": "^7.0.3",
"redux": "^4.0.0",
"redux-saga": "^1.0.2"
}
}