-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "prologtester",
"displayName": "Prolog Tester",
"description": "A VSCode Extension for running prolog Unit Tests",
"version": "0.5.1",
"engines": {
"vscode": "^1.80.0"
},
"publisher": "SkyDev",
"author": {
"name": "Sky Dev",
"email": "diogo_goncalves2004@hotmail.com"
},
"categories": [
"Testing"
],
"activationEvents": [
"onLanguage:prolog",
"workspaceContains:**/*.pl"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "prologtester.reloadTests",
"title": "Reload Tests"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.80.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"eslint": "^8.54.0",
"typescript": "^5.3.2",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8"
},
"icon": "images/Prology.jpeg",
"repository": {
"type": "git",
"url": "https://github.com/skydev125/prologtester.git"
}
}