-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.15 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@yookue/react-condition",
"version": "0.2.0",
"title": "ReactCondition",
"description": "Render components conditionally for react",
"homepage": "https://yookue.github.io/react-condition",
"organization": "Yookue Ltd",
"private": false,
"license": "MIT",
"keywords": [
"react-condition",
"if",
"if-else",
"for",
"switch",
"while",
"do-while",
"while-do",
"map-iterator",
"set-iterator",
"object-iterator",
"condition",
"condition-render",
"control-statement"
],
"files": [
"dist"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/umd/react-condition.min.js",
"types": "dist/esm/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "del-cli ./dist && father build",
"build:doctor": "father doctor",
"build:watch": "father dev",
"docs:build": "typedoc --out ./docs-dist",
"docs:publish": "gh-pages -d ./docs-dist",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"test": "jest",
"test:coverage": "del-cli ./coverage && jest --coverage --coverageDirectory ./coverage"
},
"dependencies": {
"@babel/runtime": "^7.26.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@yookue/babel-plugin-remove-comment": "^0.2.0",
"@yookue/typedoc-plugin-raw-content": "^0.2.2",
"@yookue/typedoc-theme-dumi": "^0.2.1",
"del-cli": "^6.0.0",
"father": "^4.5.1",
"gh-pages": "^6.2.0",
"globals": "^15.12.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.2.5",
"typedoc": "^0.26.11",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yookue/react-condition.git"
},
"bugs": {
"url": "https://github.com/yookue/react-condition/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"collective": {
"url": "https://opencollective.com/yookue-awesome"
},
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/yookue-awesome"
},
{
"type": "individual",
"url": "https://yookue.com/public/donate"
}
],
"author": {
"name": "Yookue Ltd",
"email": "[email protected]",
"url": "https://yookue.com"
},
"contributors": [
{
"name": "David Hsing",
"email": "[email protected]",
"url": "https://github.com/davidhsing"
}
]
}