-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.83 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
{
"name": "vs-verification-toolbox",
"version": "1.0.0",
"description": "Useful component to build VS Code extensions for verifiers.",
"main": "out/index.js",
"activationEvents": [
"this property is required to run vs code tests"
],
"types": "out/index.d.ts",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint --config ./tslint.json --project tsconfig.json './src/**/*.ts'",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"prepare": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viperproject/vs-verification-toolbox.git"
},
"keywords": [
"vscode",
"verification",
"npm",
"node"
],
"author": "Julian Dunskus",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/viperproject/vs-verification-toolbox/issues"
},
"homepage": "https://github.com/viperproject/vs-verification-toolbox#readme",
"engines": {
"vscode": "^1.43.0",
"node": "*"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.6",
"@types/vscode": "^1.43.0",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-unicorn": "^51.0.1",
"glob": "^10.3.12",
"md5-file": "^5.0.0",
"mocha": "^10.4.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.4.3",
"yargs": "^17.7.2"
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"extract-zip": "^2.0.0",
"fs-extra": "^11.2.0",
"got": "^11.8.6"
}
}