-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.68 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": "@sky0014/store",
"version": "2.2.0",
"description": "An easy store for react and hooks.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && rollup -c",
"test": "rimraf coverage && jest --coverage",
"pub": "npm run test && npm run build && npm publish --registry=https://registry.npmjs.org --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sky0014/store.git"
},
"keywords": [
"react",
"hooks",
"multiple",
"store",
"immutable",
"computed"
],
"author": "sky0014 <[email protected]>",
"bugs": {
"url": "https://github.com/sky0014/store/issues"
},
"homepage": "https://github.com/sky0014/store/#readme",
"peerDependencies": {
"@types/react": "^16.8 || ^17.0 || ^18.0",
"@types/react-dom": "^16.8 || ^17.0 || ^18.0",
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0",
"react-native": ">=0.59"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react": "^13.4.0",
"@testing-library/react-12": "npm:@testing-library/react@^12",
"@testing-library/react-native": "^12.0.0-rc.0",
"@types/jest": "^29.0.2",
"@types/promise.prototype.finally": "^2.0.4",
"@types/react": "^18.0.5",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"metro-react-native-babel-preset": "^0.75.1",
"react": "^18.2.0",
"react-17": "npm:react@^17",
"react-dom": "^18.2.0",
"react-dom-17": "npm:react-dom@^17",
"react-native": "^0.71.3",
"react-test-renderer": "^18.2.0",
"react-test-renderer-17": "npm:react-test-renderer@^17",
"rimraf": "^3.0.2",
"rollup": "^2.70.2",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-node-externals": "^5.1.2",
"tslib": "^2.5.0",
"typescript": "^4.8.3"
},
"dependencies": {
"@sky0014/logger": "^1.0.7",
"@sky0014/serial": "^1.0.1",
"promise.prototype.finally": "^3.1.4",
"unstable_batchedupdates": "^1.0.2"
},
"browserslist": [
"chrome 55",
"firefox 53"
],
"files": [
"lib"
]
}