This repository has been archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.52 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": "@data-provider/connector-react",
"version": "1.4.3",
"description": "React connector for Data Provider",
"keywords": [
"data-provider",
"reactive",
"data",
"crud",
"react",
"connect",
"hoc",
"plugin",
"connector"
],
"author": "Javier Brea",
"license": "Apache-2.0",
"repository": "https://github.com/data-provider/connector-react",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/data-provider-connector-react.cjs.js",
"module": "dist/data-provider-connector-react.esm.js",
"scripts": {
"prelint": "rimraf demo/src/connector-react",
"lint": "eslint src test demo/mocks demo/src",
"lint-staged": "lint-staged",
"build": "rollup --config",
"test": "jest",
"test:ci": "npm run test -- --coverage --ci --verbose=false --coverageReporters=lcov --coverageReporters=text-summary",
"test:coverage": "npm run test:ci",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"peerDependencies": {
"react": "^16.10.2",
"@data-provider/core": "^1.7.0"
},
"dependencies": {
"hoist-non-react-statics": "3.3.2",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/core": "7.8.4",
"@babel/preset-env": "7.8.4",
"@babel/preset-react": "7.8.3",
"@data-provider/core": "1.8.0",
"@data-provider/axios": "1.6.1",
"axios": "0.19.2",
"axios-retry": "3.1.2",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "25.1.0",
"babel-polyfill": "6.26.0",
"coveralls": "3.0.9",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-react": "7.18.3",
"husky": "4.2.3",
"jest": "25.1.0",
"jsdom": "16.2.0",
"lint-staged": "9.5.0",
"prettier": "1.19.1",
"prop-types": "15.7.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-test-renderer": "16.12.0",
"rimraf": "3.0.2",
"rollup": "1.31.1",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "6.0.4",
"sinon": "8.1.1"
},
"lint-staged": {
"src/**/*.js": "eslint",
"demo/mocks/**/*.js": "eslint",
"demo/src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"engines": {
"node": "10.x || 12.x || 13.x"
}
}