-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 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
{
"name": "@xbyorange/react-mercury",
"version": "1.2.1",
"description": "Plugin for connecting React components with Mercury origins or selectors",
"keywords": [
"reactive",
"data",
"crud",
"react",
"connect",
"hoc",
"plugin",
"mercury"
],
"author": "XByOrange",
"license": "Apache-2.0",
"repository": "https://github.com/xbyorange/react-mercury",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"main": "dist/react-mercury.umd.js",
"module": "dist/react-mercury.esm.js",
"scripts": {
"prelint": "rimraf demo/src/react-mercury",
"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",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"peerDependencies": {
"react": "^16.10.2",
"@xbyorange/mercury": "^1.5.0"
},
"dependencies": {
"hoist-non-react-statics": "3.3.0",
"lodash": "4.17.15"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@xbyorange/mercury": "^1.5.0",
"@xbyorange/mercury-api": "^1.3.0",
"axios": "0.18.0",
"axios-retry": "^3.1.2",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-polyfill": "^6.26.0",
"coveralls": "^3.0.7",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "6.5.1",
"eslint-config-prettier": "6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"jsdom": "^15.2.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^16.10.2",
"react-dom": "^16.10.2",
"react-test-renderer": "^16.10.2",
"rimraf": "^3.0.0",
"rollup": "^1.25.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3",
"sinon": "^7.5.0"
},
"lint-staged": {
"src/**/*.js": "eslint",
"demo/mocks/**/*.js": "eslint",
"demo/src/**/*.js": "eslint",
"test/**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
}
}