-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "commander-cli-starter-ts",
"version": "1.0.0",
"description": "A typescript template for building command line interfaces with commander.js",
"homepage": "https://github.com/danielfsousa/commander-cli-starter-ts#readme",
"bugs": {
"url": "https://github.com/danielfsousa/commander-cli-starter-ts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielfsousa/commander-cli-starter-ts.git"
},
"license": "MIT",
"author": {
"name": "Daniel Sousa",
"email": "[email protected]"
},
"type": "module",
"bin": {
"mycli": "dist/bin/mycli.js"
},
"scripts": {
"build": "tsc",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "eslint . --ext ts,js",
"lint:fix": "eslint . --ext ts,js --fix",
"start": "ts-node-esm bin/mycli.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"commander": "^9.4.0"
},
"devDependencies": {
"@danielfsousa/prettier-config": "^1.1.0",
"@types/jest": "^28.1.6",
"@types/node": "^16.11.47",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}