-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.25 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
{
"name": "@rsuite/validation",
"version": "1.5.0",
"description": "",
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"src",
"dist",
"*.d.ts"
],
"scripts": {
"dev": "tsc --watch",
"prebuild": "npm test",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "jest --coverage"
},
"keywords": [
"schema",
"validation",
"react",
"rsuite",
"form"
],
"author": "Doma<[email protected]>",
"repository": "[email protected]:rsuite/validation.git",
"homepage": "https://github.com/rsuite/validation",
"license": "MIT",
"peerDependencies": {
"rsuite": "^3.8.4 || >=4.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/lodash.uniqby": "^4.7.6",
"@types/lodash.upperfirst": "^4.3.6",
"husky": "^4.3.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"rsuite": "^4.1.0",
"ts-jest": "^26.4.3",
"typescript": "^3.9.7"
},
"dependencies": {
"lodash.uniqby": "^4.7.0",
"lodash.upperfirst": "^4.3.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}