-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.4 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
{
"name": "fast-mvp-cli",
"version": "1.0.2",
"description": "Create repo with the help of fast-mvp repo template ",
"main": "index.js",
"bin": "index.js",
"files": [
"index.js"
],
"author": "luctst",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://www.github.com/luctst/fast-mvp-cli"
},
"bugs": {
"url": "https://www.github.com/luctst/fast-mvp-cli/issues"
},
"homepage": "https://www.github.com/luctst/fast-mvp-cli",
"engines": {
"node": ">= 10.0.0"
},
"eslintIgnore": [
"lib/build/"
],
"ava": {
"cache": true
},
"keywords": [
"cli",
"vue-cli",
"node",
"nodejs",
"fast-cli",
"javascript"
],
"scripts": {
"test": "ava --verbose ./test/*.js",
"test:watch": "ava --watch --verbose --fail-fast ./test/*.js",
"lint": "npx eslint --cache 'index.js'",
"lint:watch": "esw -w --clear --color --cache 'index.js'",
"lint:fix": "npx eslint --fix 'index.js'",
"style": "prettier -c 'index.js'",
"style:fix": "prettier --c --write 'index.js'"
},
"devDependencies": {
"ava": "^3.15.0",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-watch": "^8.0.0",
"prettier": "^2.5.1"
},
"dependencies": {
"axios": "^0.24.0",
"chalk": "^4.1.2",
"get-installed-path": "^4.0.8",
"inquirer": "^8.2.0",
"ora": "^5.4.1"
}
}