-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "lepper",
"description": "Help you understand project's structure easly.",
"version": "0.0.1",
"bin": {
"lepper": "./compiled/bin/lepper.js"
},
"scripts": {
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\"",
"lint": "eslint --fix --ext .js,.ts",
"compile": "tsc --pretty && babel --extensions '.ts' src -d compiled",
"prepare": "husky install",
"lepper:describe": "lepper describe",
"lepper:verify": "lepper verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pacifiquem/lepper.git"
},
"keywords": [
"lepper",
"project",
"project-management",
"collaboration",
"git",
"describe",
"project-structure"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/pacifiquem/lepper/issues"
},
"homepage": "https://github.com/pacifiquem/lepper#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.23.2",
"@types/inquirer": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-vitest": "^0.3.8",
"husky": "^8.0.3",
"lepper": "^0.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^11.1.0",
"inquirer": "8.2.6"
}
}