-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 880 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
36
37
38
39
40
{
"name": "@kontrolio/cli",
"version": "0.0.53",
"main": "",
"author": "Marcelo Cardoso <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/marcelovicentegc/kontrolio"
},
"bin": {
"kontrolio": "./run.js"
},
"files": [
"npm/**/*"
],
"scripts": {
"get": "GO111MODULE=on go get --",
"removeunused": "go mod tidy",
"build": "go build -o ./dist/main .",
"start": "yarn build && ./dist/main",
"test": "yarn build"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"husky": "^4.3.6"
},
"dependencies": {
"axios": "^0.21.1",
"console.table": "^0.10.0",
"rimraf": "^3.0.2",
"tar": "^6.1.0"
}
}