-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
91 lines (91 loc) · 2.12 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
{
"name": "formsy-semantic-ui-react",
"version": "2.3.6",
"description": "Formsy-React wrappers for Semantic-Ui-React's form Components",
"keywords": [
"formsy-react",
"semantic-ui",
"semantic-ui-react",
"formsy",
"form",
"react",
"react-component",
"form-validation"
],
"bugs": {
"url": "https://github.com/zabute/formsy-semantic-ui-react/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/zabute/formsy-semantic-ui-react"
},
"license": "MIT",
"author": {
"name": "Ardamis Yeshak",
"email": "arde987@gmail.com",
"url": "https://github.com/zabute"
},
"main": "dist/index.js",
"module": "dist/formsy-semantic-ui-react.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release": "np",
"start": "tsdx watch",
"test": "jest --passWithNoTests",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"arrowParens": "always",
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"resolutions": {
"@types/react": "17",
"@types/react-dom": "17"
},
"dependencies": {
"formsy-react": "^2.0.0",
"hoist-non-react-statics": "^3.3.2",
"semantic-ui-react": "^2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^29.2.2",
"@types/react": "^16.14.43",
"@types/react-dom": "^16.9.19",
"auto-changelog": "^2.4.0",
"husky": "^4.2.5",
"jest": "^29.3.0",
"jest-environment-jsdom": "^29.3.0",
"np": "^7.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^29.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"react": ">=16 || >=17 || >= 18"
},
"engines": {
"node": ">=10"
}
}