-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.34 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.34 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
{
"name": "@checkmarx/vscode-core",
"version": "2.46.0",
"description": "Shared core library for Checkmarx VS Code extensions",
"main": "./out/index.js",
"types": "./out/index.d.ts",
"scripts": {
"compile": "tsc -b ./ && npm run copymedia",
"watch": "tsc -w -p ./",
"copymedia": "copyfiles \"media/**/*\" out/ -E",
"clean": "rimraf out",
"unit-test-core": "npx mocha"
},
"dependencies": {
"@checkmarx/ast-cli-javascript-wrapper": "0.0.151",
"@popperjs/core": "^2.11.8",
"@vscode/codicons": "^0.0.36",
"axios": "1.12.2",
"dotenv": "^16.4.7",
"https-proxy-agent": "^7.0.6",
"jsonstream-ts": "^1.3.6",
"jwt-decode": "^4.0.0",
"minimatch": "^10.0.1",
"serialize-javascript": "^6.0.2",
"tree-kill": "^1.2.2",
"validator": "13.15.22"
},
"devDependencies": {
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/mock-require": "^2.0.3",
"@types/nock": "^10.0.3",
"@types/node": "^20.0.0",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.63.0",
"chai": "4.3.10",
"copyfiles": "2.4.1",
"mocha": "^10.8.2",
"mock-require": "^3.0.3",
"nock": "^14.0.10",
"nyc": "^17.1.0",
"rimraf": "^5.0.5",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"overrides": {
"@isaacs/brace-expansion": "5.0.1"
}
}