forked from alibaba/lowcode-materials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.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
{
"name": "lowcode-materials",
"private": true,
"version": "0.0.0",
"description": "Materials for LowCode",
"scripts": {
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"f2elint-scan": "f2elint scan",
"f2elint-fix": "f2elint fix",
"prepublishOnly": "npm run build && npm run lowcode:build && npm run lowcode:antd:build"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write"
],
"*.{js,jsx,less,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"f2elint": "^2.2.0",
"lint-staged": "^10.5.3",
"prettier": "^1.19.1",
"typescript": "^3.9.3",
"yorkie": "^2.0.0"
},
"authors": [
{
"name": "金禅"
},
{
"name": "荣彬"
},
{
"name": "屹凡"
},
{
"name": "启剑"
},
{
"name": "春希"
},
{
"name": "度城"
},
{
"name": "梧忌"
},
{
"name": "莫夭"
}
],
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "f2elint commit-file-scan",
"commit-msg": "f2elint commit-msg-scan"
}
}
}