-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "react-async-segregation",
"version": "0.7.3",
"description": "encourage side-effects segregation for React component",
"scripts": {
"build": "rimraf dist && swc src --out-dir=dist --source-maps=false & tsc && cp package.json README.md LICENSE dist",
"test": "jest",
"dist": "npm run build && cd dist && npm publish"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sundaycrafts/react-with-async-props.git"
},
"keywords": [
"react",
"container component",
"humble object",
"HOC",
"high ordered component",
"IoC",
"inversion of control",
"DI container",
"dependency injection"
],
"author": "sundaycrafts",
"license": "MIT",
"bugs": {
"url": "https://github.com/sundaycrafts/react-with-async-props/issues"
},
"homepage": "https://github.com/sundaycrafts/react-with-async-props#readme",
"peerDependencies": {
"react": "18.x || 17.x",
"typescript": "^4.1"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.187",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
}
}