-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.45 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
{
"name": "react-hoax",
"version": "2.0.1",
"description": "Idiomatic resourceful context",
"license": "MIT",
"repository": "github:novykh/react-hoax",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/react-hoax.js",
"keywords": [
"react",
"context",
"hooks",
"reducers"
],
"authors": [
"Johnny Klironomos <[email protected]> (https://github.com/novykh)",
"John Apostolidis <[email protected]> (https://github.com/apostolidhs)"
],
"files": [
"dist",
"lib",
"src",
"es"
],
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/react-hooks": "8.0.0",
"babel-jest": "27.5.1",
"babel-loader": "^8.2.4",
"core-js": "^3.22.0",
"docdash": "^1.2.0",
"eslint": "^8.13.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"jest": "27.5.1",
"prettier": "^2.6.2",
"prettier-eslint": "^13.0.0",
"prettier-eslint-cli": "^5.0.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-test-renderer": "^18.0.0",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"peerDependencies": {
"lodash": ">=4.0.0",
"react": ">=16.8.0",
"react-dom": "*",
"react-native": "*",
"scheduler": ">=0.19.0"
},
"peerDependenciesMeta": {
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"sideEffects": false,
"npmName": "react-hoax",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"scripts": {
"clean": "rimraf lib dist es coverage",
"build:commonjs": "BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "babel src --out-dir es",
"build:umd": "webpack",
"build": "yarn build:commonjs && yarn build:es && yarn build:umd",
"test": "jest --config ./jest/config.js",
"prepublishOnly": "yarn clean && yarn build",
"publish:beta": "npm publish --tag=next",
"docs": "jsdoc -c doc.conf.json"
},
"dependencies": {
"lodash": "^4.17.21"
}
}