-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.21 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
{
"name": "@leedomjs/cli",
"version": "0.9.0",
"packageManager": "[email protected]",
"description": "Command line interface for Leedom",
"keywords": [
"Leedom",
"leedomjs",
"cli"
],
"author": "Leedom",
"license": "MIT",
"homepage": "https://github.com/leedomjs/leedom-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/leedomjs/leedom-cli.git"
},
"bugs": {
"url": "https://github.com/leedomjs/leedom-cli/issues"
},
"files": [
"bin",
"lib"
],
"scripts": {
"lint": "eslint .",
"release": "bumpp && pnpm publish"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,json}": "eslint --fix"
},
"bin": {
"leedom": "./bin/leedom.js"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^12.0.0",
"degit": "^2.8.4",
"execa": "5.1.1",
"glob": "^10.3.10",
"gradient-string": "^2.0.2",
"inquirer": "8.0.0",
"is-online": "^8.5.1",
"ora": "5.4.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@leedomjs/eslint-config-basic": "^0.11.2",
"bumpp": "^9.4.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.11.1"
}
}