-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 2.75 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "velocitas-cli",
"version": "0.0.0",
"description": "Lifecycle management of Velocitas Vehicle Applications",
"author": "Eclipse Velocitas Team",
"bin": {
"velocitas": "./bin/run"
},
"homepage": "https://github.com/eclipse-velocitas/cli",
"license": "Apache-2.0",
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/package-lock.json",
"/oclif.manifest.json"
],
"repository": "eclipse-velocitas/cli",
"dependencies": {
"@oclif/core": "3.27.0",
"fs-extra": "11.2.0",
"inquirer": "8.2.6",
"node-pty": "1.0.0",
"recursive-copy": "2.0.14",
"semver": "7.6.3",
"simple-git": "3.26.0"
},
"devDependencies": {
"@oclif/test": "3.2.15",
"@types/chai": "4.3.17",
"@types/fs-extra": "11.0.4",
"@types/mocha": "10.0.7",
"@types/node": "20.16.5",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@yao-pkg/pkg": "5.13.0",
"chai": "4.5.0",
"eslint": "8.57.0",
"mocha": "10.7.3",
"nyc": "15.1.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "3.2.4",
"shx": "0.3.4",
"sinon": "18.0.1",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"yaml": "2.5.1"
},
"oclif": {
"bin": "velocitas",
"dirname": "velocitas",
"commands": "./dist/commands",
"plugins": [],
"topicSeparator": " ",
"topics": {
"cache": {
"description": "Interact with the project cache"
},
"component": {
"description": "Interact with project components"
}
},
"repositoryPrefix": "<%- commandPath %>"
},
"pkg": {
"scripts": "dist/**/*.js",
"outputPath": "dist"
},
"scripts": {
"build": "shx rm -rf dist && rm -f tsconfig.tsbuildinfo && tsc -b",
"lint": "eslint src --ext ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && npx oclif manifest && oclif readme",
"test": "mocha \"test/**/*.test.ts\"",
"coverage": "nyc --reporter=cobertura npm run test && npm run coverage:report",
"coverage:report": "nyc report --reporter=text --reporter=cobertura --report-dir=coverage",
"version": "npx oclif readme && git add README.md",
"local-system-test": "export VELOCITAS_PROCESS=\"./bin/dev\" && mocha --timeout 120000 \"test/**/*.stest.ts\"",
"system-test": "export VELOCITAS_PROCESS=\"./velocitas-linux-$ARCH\" && mocha --timeout 120000 \"test/**/*.stest.ts\"",
"compile-exe": "npm run build && pkg --target=$TARGET --compress=Brotli --output=velocitas-$OS-$ARCH ."
},
"engines": {
"node": ">=20.0.0"
},
"bugs": "https://github.com/eclipse-velocitas/cli/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}