-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "@l-lib/cli",
"version": "1.0.4",
"description": "this is a command line to create your project get faster",
"main": "index.js",
"bin": {
"l-lib": "index.js"
},
"scripts": {
"prettier": "prettier --write .",
"commit": "cz",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"nodejs"
],
"homepage": "https://github.com/louis61619/mal-cli",
"repository": {
"type": "git",
"url": "https://github.com/louis61619/mal-cli"
},
"author": "louis61619",
"license": "MIT",
"dependencies": {
"axios": "^0.22.0",
"chalk": "^4.1.2",
"cli-spinners": "^2.6.1",
"cli-table": "^0.3.6",
"commander": "^8.2.0",
"download-git-repo": "^3.0.2",
"figlet": "^1.5.2",
"fs-extra": "^10.0.0",
"inquirer": "^8.2.0",
"ora": "^6.0.1"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}