-
Notifications
You must be signed in to change notification settings - Fork 158
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 886 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 886 Bytes
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
{
"name": "@finos/git-proxy-cli",
"version": "2.0.0",
"description": "Command line interface tool for FINOS GitProxy.",
"bin": {
"git-proxy-cli": "./dist/index.js"
},
"dependencies": {
"axios": "^1.13.6",
"yargs": "^17.7.2",
"@finos/git-proxy": "2.0.0"
},
"scripts": {
"build": "tsc",
"lint": "eslint \"./*.ts\" --fix",
"test": "cd ../.. && vitest --run --dir packages/git-proxy-cli/test",
"test-coverage-ci": "cd ../.. && c8 --reports-dir ./coverage-cli --include \"packages/git-proxy-cli/dist/**\" --exclude \"packages/git-proxy-cli/test/**\" --reporter lcovonly --reporter text vitest --run --dir packages/git-proxy-cli/test --test-timeout 15000"
},
"author": "Miklos Sagi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/finos/git-proxy",
"path": "packages/git-proxy-cli"
}
}