-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 903 Bytes
/
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
{
"name": "@dennis273/geet",
"version": "0.0.0-development",
"description": "A command line tool to help handle git repo.",
"repository": "https://github.com/Dennis273/geet.git",
"author": "Dennis273 <dennisc695@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "esbuild src/index.ts --platform=node --bundle --outfile=./dist/index.js",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"files": [
"dist/**"
],
"dependencies": {},
"devDependencies": {
"@types/node": "18.6.4",
"commander": "2.20.3",
"esbuild": "0.14.53",
"fs-extra": "10.1.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"semantic-release": "19.0.3",
"typescript": "4.9.5"
},
"bin": {
"geet": "./dist/index.js"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}