-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.45 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
{
"name": "lkx-cli",
"main": "lib/index.js",
"description": "project plugins template",
"versions":"1.1.1",
"authors": {
"name": "lkx",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "/lkx-cli"
},
"scripts": {
"start": "cross-env APP_ROOT=example umi dev",
"build": "father-build",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"test": "umi-test",
"test:coverage": "umi-test --coverage",
"test:update": "umi-test --updateSnapshot"
},
"bin": {
"lkxcli": "lib/index.js"
},
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write",
"git add"
],
"*.{js,jsx,less,md,json}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/envinfo": "^7.8.1",
"@types/inquirer": "^8.1.3",
"@types/node": "^13.7.7",
"father-build": "^1.17.2",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"files": [
"lib"
],
"version": "1.1.0",
"directories": {
"example": "example",
"lib": "lib"
},
"keywords": [
"lkx",
"lkx-cli",
"cli"
],
"author": "lkx",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^8.2.0",
"download-git-repo": "^3.0.2",
"envinfo": "^7.8.1",
"handlebars": "^4.7.7",
"inquirer": "^8.2.0",
"ora": "^5.4.1"
}
}