This repository has been archived by the owner on Jun 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
99 lines (99 loc) · 2.29 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
{
"name": "react-diode",
"version": "0.5.25",
"description": "Endpoint agnostic, unidirectional data fetching for React applications",
"source": "src/DiodePublic.js",
"main": "lib/DiodePublic.js",
"files": [
"lib/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "marlint --quiet",
"test": "jest --coverage",
"prepare": "npm run test && npm run build",
"build": "rollup -c rollup.config.js",
"format": "prettier --write src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/traveloka/react-diode.git"
},
"keywords": [
"react",
"diode",
"unidirectional",
"data",
"fetch",
"endpoint",
"agnostic"
],
"author": "Traveloka",
"license": "MIT",
"bugs": {
"url": "https://github.com/traveloka/react-diode/issues"
},
"homepage": "https://github.com/traveloka/react-diode#readme",
"dependencies": {
"deep-extend": "^0.6.0",
"hoist-non-react-statics": "^2.5.0",
"lodash.find": "^4.3.0",
"lodash.mergewith": "^4.6.1",
"object-assign": "^4.0.1"
},
"peerDependencies": {
"react": "^16.6.0",
"react-is": "^16.8.3"
},
"optionalDependencies": {
"isomorphic-fetch": "^2.2.1"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-plugin-async-to-promises": "^1.0.5",
"husky": "^1.2.0",
"jest": "^24.7.1",
"jest-dom": "^3.0.0",
"lint-staged": "^8.1.0",
"marlint": "^6.5.4",
"prettier": "^1.15.3",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-is": "^16.8.3",
"react-testing-library": "^5.3.2",
"rollup": "^1.12.0",
"rollup-plugin-babel": "^4.3.2"
},
"marlint": {
"ignores": [
"lib/**"
],
"rules": {
"no-duplicate-imports": 0,
"flowtype/no-types-missing-file-annotation": 0,
"no-else-return": 0,
"no-param-reassign": 0
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"jest": {
"testRegex": "__tests__/.*.test\\.js$"
}
}