-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 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
71
72
73
74
75
{
"name": "@shoutem/redux-composers",
"version": "0.1.8",
"description": "Reducers you can use for composing reducer hierarchy like with combineReducers from redux",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint src test",
"test": "mocha --require babelTestSetup --reporter spec --recursive test",
"coverage": "babel-node node_modules/isparta/bin/isparta cover --report text --report html node_modules/mocha/bin/_mocha -- -R spec --recursive test",
"build": "babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:shoutem/redux-composers.git"
},
"keywords": [
"redux",
"combineReducers",
"reducer",
"reducers",
"override",
"extend",
"pipeline",
"map"
],
"author": {
"name": "Vedran Ivanac",
"email": "[email protected]",
"url": "https://github.com/vedrani"
},
"contributors": [
{
"name": "Željko Rumenjak",
"email": "[email protected]",
"url": "https://github.com/zrumenjak"
},
{
"name": "Damir Juretić",
"email": "[email protected]",
"url": "https://github.com/damirjuretic"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/shoutem/redux-composers/issues"
},
"homepage": "https://github.com/shoutem/redux-composers",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"babel-eslint": "^6.0.0",
"babel-plugin-lodash": "^3.3.4",
"chai": "^4.2.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-flow-vars": "^0.4.0",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.3.0",
"eslint-plugin-react": "^5.1.1",
"estraverse-fb": "^1.3.1",
"isparta": "^4.0.0",
"istanbul": "0.4.4",
"mocha": "^2.5.3"
},
"dependencies": {
"lodash": "^4.17.5",
"shallowequal": "^1.1.0"
}
}