-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 1.99 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
{
"name": "@alifd/validate",
"version": "2.0.3",
"description": "Validation to be used with @alifd/field",
"files": [
"demo/",
"es/",
"lib/",
"build/"
],
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"start": "tsc --watch",
"build": "rm -rf es lib && npm run build:lib && npm run build:es",
"build:lib": "tsc --module commonjs --outDir lib",
"build:es": "tsc --module esnext --outDir es",
"prepublishOnly": "npm run build",
"test": "jest",
"precommit": "lint-staged",
"eslint": "eslint '@(src|test)/**/*.@(js|jsx)'"
},
"lint-staged": {
"**/*.@(js|jsx|ts|tsx)": [
"prettier --write",
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"keywords": [
"ice",
"react",
"component"
],
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@alifd/eslint-config-next": "^2.0.0",
"@commitlint/cli": "^8.1.0",
"@types/chai": "^4.3.11",
"@types/jest": "^29.5.11",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"chai": "^4.4.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^3.0.0",
"jest": "^29.7.0",
"lint-staged": "^9.2.0",
"prettier": "^3.2.4",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"semantic-release": "^17.2.3",
"sinon": "^16.1.3",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"componentConfig": {
"name": "validate",
"title": "Validate",
"categories": [
"表单"
]
},
"bugs": "https://github.com/alibaba-fusion/validate/issues",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba-fusion/validate.git"
}
}