-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 3.63 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@brigad/redux-rest-easy",
"version": "4.0.1",
"description": "Redux/React/React Native framework generating actions, reducers and selectors to perform network requests",
"main": "dist/redux-rest-easy.cjs.js",
"jsnext:main": "dist/redux-rest-easy.es.js",
"module": "dist/redux-rest-easy.es.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Brigad/redux-rest-easy.git"
},
"keywords": [
"react",
"reactjs",
"redux",
"reducer",
"state",
"selector",
"boilerplate",
"rest",
"network",
"http"
],
"author": "Adrien HARNAY <[email protected]> (https://github.com/adrienharnay)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Brigad/redux-rest-easy/issues"
},
"homepage": "https://github.com/Brigad/redux-rest-easy#readme",
"npmName": "@brigad/redux-rest-easy",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"scripts": {
"prepare": "yarn build:clean && yarn build",
"modules:clean": "rimraf node_modules",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd && yarn build:umd:min",
"build:commonjs": "cross-env FORMAT=cjs rollup -c",
"build:es": "cross-env FORMAT=es rollup -c",
"build:umd": "cross-env FORMAT=umd rollup -c",
"build:umd:min": "cross-env FORMAT=umd MINIFY=true rollup -c",
"build:clean": "rimraf dist",
"lint": "eslint src",
"test": "jest",
"test:clean": "yarn test --no-cache",
"test:watch": "yarn test --watch",
"test:cov": "yarn test --coverage",
"ci": "yarn ci:lint && yarn ci:test && yarn ci:coverage",
"ci:lint": "yarn lint",
"ci:test": "cross-env CI=true yarn test --ci --coverage --expand --forceExit --detectOpenHandles -w 1",
"ci:coverage": "codecov -f coverage/coverage-final.json",
"ci:publish": "yarn semantic-release",
"prettify": "prettier-eslint --write \"./src/**/*.js\"",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate"
},
"dependencies": {
"fast-stable-stringify": "1.0.0",
"hoist-non-react-statics": "3.3.0",
"is-object": "1.0.1",
"murmur-hash": "1.0.0",
"qs": "6.7.0",
"re-reselect": "3.3.0",
"regenerator-runtime": "0.13.2",
"reselect": "4.0.0"
},
"devDependencies": {
"@ampproject/rollup-plugin-closure-compiler": "0.10.0",
"@babel/cli": "7.5.0",
"@babel/core": "7.5.4",
"@babel/plugin-proposal-class-properties": "7.5.0",
"@babel/preset-env": "7.5.4",
"@babel/preset-react": "7.0.0",
"@semantic-release/git": "7.0.16",
"all-contributors-cli": "6.7.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"codecov": "3.5.0",
"core-js": "3.1.4",
"cross-env": "5.2.0",
"eslint": "6.0.1",
"eslint-config-airbnb": "17.1.1",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.2",
"fetch-mock": "7.3.6",
"jest-cli": "24.8.0",
"mockdate": "2.0.3",
"moment": "2.24.0",
"prettier-eslint-cli": "5.0.0",
"react": "16.8.6",
"react-dom": "16.8.6",
"react-redux": "7.1.0",
"redux": "4.0.4",
"rimraf": "2.6.3",
"rollup": "1.17.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-replace": "2.2.0",
"semantic-release": "15.13.18"
},
"peerDependencies": {
"react": "^16.8.3",
"react-redux": "^7.0.0",
"redux-thunk": "^2.0.0 || ^3.0.0 || ^4.0.0-0"
}
}