-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.71 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.71 KB
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
{
"name": "react-state-proxy",
"version": "1.4.11",
"description": "The most simplified react state management library.",
"main": "dist/index.js",
"scripts": {
"clean": "del-cli dist",
"build": "npm run clean && tsc",
"dev": "tsc -w",
"test": "jest --no-cache --testTimeout 8000",
"test-debug": "jest --no-cache --testTimeout 8000 --detectOpenHandles",
"coverage": "jest --no-cache --coverage --testTimeout 8000",
"coveralls": "jest --coverage --testTimeout 8000 --coverageReporters=text-lcov | coveralls"
},
"keywords": [
"react state",
"react state management",
"easy react state",
"simple react state",
"simplified react state",
"react easy state",
"react simple state",
"react simplified state"
],
"files": [
"dist",
"src",
"README.MD"
],
"author": "shuilonghu",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-arrow-functions": "^7.10.4",
"@babel/plugin-transform-async-to-generator": "^7.10.4",
"@babel/plugin-transform-classes": "^7.15.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime": "^7.15.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^13.1.0",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.2",
"@types/node": "^14.17.18",
"@types/react": "^17.0.34",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"babel-loader": "^8.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"commitizen": "^4.2.1",
"coveralls": "^3.1.1",
"del-cli": "^3.0.1",
"eslint": "^8.5.0",
"husky": "^4.3.0",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^27.0.4",
"ts-loader": "^8.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.4.3",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/huturen/react-state-proxy"
},
"homepage": "https://github.com/huturen/react-state-proxy#readme",
"engines": {
"node": ">=14.13.1"
}
}