-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.83 KB
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
57
58
59
60
61
62
63
64
{
"name": "@codacy/codacy-cloud-cli",
"version": "1.0.1",
"description": "A command-line tool to interact with Codacy Cloud from your terminal",
"homepage": "https://www.codacy.com",
"repository": {
"type": "git",
"url": "git+https://github.com/codacy/codacy-cloud-cli.git"
},
"bugs": {
"url": "https://github.com/codacy/codacy-cloud-cli/issues"
},
"main": "dist/index.js",
"bin": {
"codacy": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"test": "vitest run",
"build": "tsc -p tsconfig.build.json && chmod +x dist/index.js",
"prepublishOnly": "npm run update-api && npm run build",
"start": "npx ts-node src/index.ts",
"start:dist": "node dist/index.js",
"fetch-api": "curl https://artifacts.codacy.com/api/codacy-api/50.7.17/apiv3-bundled.yaml -o ./api-v3/api-swagger.yaml --create-dirs",
"generate-api": "rm -rf ./src/api/client && openapi --input ./api-v3/api-swagger.yaml --output ./src/api/client --useUnionTypes --indent 2 --client fetch",
"update-api": "npm run fetch-api && npm run generate-api"
},
"keywords": [
"codacy",
"cli",
"code-quality",
"static-analysis",
"code-review",
"security",
"linting"
],
"author": "Codacy <support@codacy.com> (https://www.codacy.com)",
"license": "ISC",
"engines": {
"node": ">=18"
},
"dependencies": {
"ansis": "4.0.0",
"cli-table3": "^0.6.3",
"commander": "14.0.0",
"date-fns": "4.1.0",
"gitdiff-parser": "0.3.1",
"lodash": "4.17.23",
"numeral": "2.0.6",
"ora": "7.0.1",
"pluralize": "8.0.0"
},
"devDependencies": {
"@codacy/openapi-typescript-codegen": "0.0.8",
"@types/commander": "2.12.0",
"@types/node": "22.15.21",
"@types/numeral": "2.0.5",
"@types/pluralize": "0.0.33",
"typescript": "5.8.3",
"vitest": "4.0.18"
}
}