-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 KB
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
{
"name": "@meta-ultra/cli",
"version": "0.1.0",
"description": "CLI for creating Meta Ultra fashion projects, through the entire workflow including development, bundling and deployment.",
"keywords": [
"Meta Ultra",
"cli",
"skeleton",
"code generater"
],
"repository": {
"type": "github",
"url": "https://github.com/meta-ultra/cli"
},
"homepage": "https://github.com/meta-ultra/cli",
"author": {
"name": "fsjohnhuang",
"url": "https://www.cnblogs.com/fsjohnhuang/"
},
"license": "GPL-3.0-only",
"private": true,
"bin": {
"meta-ultra": "./src/index.js"
},
"files": [
"./src"
],
"scripts": {
"prepare": "husky install",
"commit": "git-cz"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint"
],
"*.{htm,html}": [
"prettier --write"
],
"*.{css,less,scss,sass}": [
"stylelint --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "6.0",
"lint-staged": "^13.2.2",
"prettier": "2.8.8"
}
}