-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.56 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
98
99
100
{
"name": "ctest-lab",
"displayName": "CTest Lab",
"description": "Discover, filter, and run tests registered with CTest.",
"version": "0.4.0",
"publisher": "brobeson",
"author": {
"name": "brobeson",
"url": "https://brobeson.github.io"
},
"contributors": [
"PhilipNelson5"
],
"homepage": "https://brobeson.github.io/ctest-lab",
"icon": "images/logo.png",
"bugs": {
"url": "https://github.com/brobeson/ctest-lab/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brobeson/ctest-lab.git"
},
"engines": {
"vscode": "^1.70.0"
},
"license": "MIT",
"categories": [
"Testing"
],
"keywords": [
"ctest",
"cmake"
],
"preview": true,
"activationEvents": [
"workspaceContains:CMakeLists.txt"
],
"main": "./dist/extension.js",
"extensionKind": [
"workspace"
],
"contributes": {
"configuration": {
"title": "ctest-lab",
"properties": {
"ctest-lab.buildBeforeRun": {
"type": "boolean",
"description": "Run cmake-tools' build command before running tests.",
"default": true
},
"ctest-lab.buildDirectory": {
"type": "string",
"description": "Path to the project build directory. CTest Lab uses this if `cmake.buildDirectory` is unavailable."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"prepackage": "scripts/render_logo.sh",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"clean": "rm -r out/*"
},
"dependencies": {
"buffer": "^6.0.3",
"child_process": "^1.0.2",
"fs": "^0.0.1-security",
"timers": "^0.1.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"prettier": "2.7.1",
"ts-loader": "^9.4.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"prettier": {
"proseWrap": "always"
}
}