This repository has been archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.43 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "wfe-cli",
"version": "1.4.0",
"description": "Front end scaffolding tool",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"preferGlobal": true,
"scripts": {
"lint": "eslint .",
"prepare": "husky install"
},
"bin": {
"wfe": "./cli.js"
},
"files": [
"lib/",
"utils/",
"cli.js",
"repos.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/wfe-cli/wfe-cli.git"
},
"keywords": [
"wf"
],
"author": "busyhe",
"license": "MIT",
"bugs": {
"url": "https://github.com/wfe-cli/wfe-cli/issues"
},
"homepage": "https://github.com/wfe-cli/wfepinst-cli#readme",
"dependencies": {
"async": "^3.2.4",
"axios": "^0.27.2",
"chalk": "^4.1.2",
"commander": "^9.3.0",
"consolidate": "^0.16.0",
"dayjs": "^1.11.3",
"download-git-repo": "^3.0.2",
"handlebars": "^4.7.7",
"ini": "^3.0.0",
"inquirer": "^8.1.5",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"metalsmith": "^2.5.0",
"minimatch": "^3.0.4",
"multimatch": "^5.0.0",
"ora": "^5.1.0",
"read-metadata": "^1.0.0",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"tildify": "^3.0.0",
"uid": "2.0.0",
"user-home": "^2.0.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@busyhe/eslint-config": "^1.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.19.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.3",
"eslint-plugin-promise": "^6.0.0",
"execa": "^5.1.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"semantic-release": "^19.0.3"
},
"engines": {
"node": ">=16.0.0"
},
"eslintConfig": {
"extends": "@busyhe",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}