-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.78 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
{
"name": "natur",
"version": "3.0.1",
"description": "react state management. support react, anujs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"pub": "yarn publish --tag next",
"pub:alpha": "yarn publish --tag alpha",
"pub:release": "yarn publish",
"prepublish": "yarn test && yarn build",
"test": "jest --silent",
"dev:test": "jest",
"test:report": "jest --coverage --silent"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/empty916/natur.git"
},
"keywords": [
"react",
"replace-redux",
"replace-mobx",
"state",
"store",
"data",
"anujs"
],
"author": "empty916",
"license": "Apache-2.0",
"homepage": "https://github.com/empty916/natur",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.4.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^26.0.23",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-is": "^17.0.3",
"@types/testing-library__jest-dom": "^5.14.0",
"babel-jest": "^26.6.3",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redux": "^4.0.5",
"rimraf": "^2.6.3",
"typescript": "^4.9.4"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2",
"react-is": "^18.2.0"
}
}