-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.29 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
93
94
95
96
97
{
"name": "cosimulation-studio",
"displayName": "Cosimulation Studio",
"publisher": "intocps",
"license": "SEE LICENSE IN LICENSE.md",
"description": "Co-simulation in VS Code",
"repository": "https://github.com/INTO-CPS-Association/Co-Simulation-Studio",
"version": "0.1.3",
"icon": "into_cps_logo.png",
"engines": {
"vscode": "^1.82.0"
},
"categories": [
"Other",
"Education"
],
"keywords": [
"maestro",
"cosimulation"
],
"activationEvents": [
"onLanguage:json"
],
"main": "./dist/ext/extension.js",
"contributes": {
"commands": [
{
"command": "cosimstudio.runSimulation",
"title": "Cosimulation Studio: Run Simulation",
"icon": "$(testing-run-icon)"
}
],
"menus": {
"editor/title": [
{
"when": "cosimstudio.cosimConfigOpen",
"command": "cosimstudio.runSimulation",
"group": "navigation"
}
]
},
"configuration": [
{
"title": "Cosimulation Studio",
"properties": {
"cosimstudio.cosimPath": {
"type": "string",
"default": "cosim.json",
"description": "Path pointing to the cosimulation configuration file. The path is relative to the workspace root."
}
}
}
]
},
"scripts": {
"clean": "npx rimraf -rf dist coverage node_modules",
"esbuild:test": "esbuild ./test/*.test.ts --bundle --outdir=dist/test --external:vscode --sourcemap --platform=node",
"esbuild:base": "esbuild ./src/extension.ts --bundle --outfile=dist/ext/extension.js --external:vscode --format=cjs --main-fields=module,main --platform=node",
"esbuild": "npm run esbuild:base -- --sourcemap",
"esbuild:watch": "npm run esbuild:base -- --sourcemap --watch",
"maestro-up": "cross-env java -jar $MAESTRO_WEBAPI_PATH",
"pretest:integration": "npm run esbuild:test && npm run esbuild",
"test:integration": "vscode-test",
"test:unit": "jest",
"vscode:prepublish": "npm run esbuild:base -- --minify"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.82.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-cli": "^0.0.8",
"@vscode/test-electron": "^2.3.9",
"axios-mock-adapter": "^1.22.0",
"cross-env": "^7.0.3",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"jest-mock-vscode": "^3.0.5",
"rfdc": "^1.4.1",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.6.8",
"fast-xml-parser": "^4.3.6",
"jsonc-parser": "^3.2.1",
"jszip": "^3.10.1",
"winston": "^3.13.0",
"winston-transport": "^4.7.0"
}
}