-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 2.25 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
{
"name": "testingmanager",
"displayName": "InterSystems Testing Manager",
"version": "0.2.4-SNAPSHOT",
"preview": true,
"publisher": "intersystems-community",
"description": "Manage testing on InterSystems servers.",
"repository": {
"type": "git",
"url": "https://github.com/intersystems-community/intersystems-testingmanager"
},
"license": "MIT",
"keywords": [
"intersystems",
"objectscript"
],
"engines": {
"vscode": "^1.93.0"
},
"icon": "images/logo.png",
"categories": [
"Testing"
],
"extensionDependencies": [
"intersystems-community.servermanager",
"intersystems-community.vscode-objectscript"
],
"contributors": [
{
"name": "John Murray",
"email": "[email protected]"
}
],
"private": true,
"scripts": {
"vscode:prepublish": "npm run compile",
"package": "vsce package",
"compile": "tsc -p ./",
"watch": "tsc -w -p ./tsconfig.json",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "node ./node_modules/tslint/bin/tslint --project tsconfig.json -t verbose",
"lint-fix": "tslint --project tsconfig.json -t verbose --fix"
},
"dependencies": {
"axios": "^0.24",
"axios-cookiejar-support": "^1.0.1",
"node-cmd": "^4.0.0",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@intersystems-community/intersystems-servermanager": "^3.8.0",
"@types/glob": "^7.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^8.10.60",
"@types/vscode": "^1.93.0",
"@vscode/test-electron": "^2.3.8",
"glob": "^7.1.6",
"mocha": "^9.2.2",
"ts-loader": "^9.4.2",
"tslint": "^5.20.1",
"typescript": "^5.5.4"
},
"main": "./out/extension",
"activationEvents": [
"onFileSystem:isfs",
"onFileSystem:isfs-readonly",
"onLanguage:objectscript-class",
"workspaceContains:**/*.cls"
],
"contributes": {
"configuration": {
"title": "InterSystems Testing Manager",
"properties": {
"intersystems.testingManager.client.relativeTestRoot": {
"markdownDescription": "Relative path to where client-side test classes are stored. Default is `internal/testing/unit_tests`.",
"type": "string",
"scope": "resource"
}
}
}
}
}