-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 986 Bytes
/
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
{
"name": "dead-end-vscode",
"displayName": "dead_end",
"description": "VS Code extension for Ruby's DeadEnd for better syntax errors",
"icon": "images/logo.png",
"version": "0.2.0",
"publisher": "Zombocom",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/zombocom/dead_end-vscode.git"
},
"activationEvents": [
"onLanguage:ruby"
],
"main": "./extension.js",
"contributes": {
"commands": []
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.7",
"@types/vscode": "^1.52.0",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"glob": "^7.1.6",
"mocha": "^8.2.1",
"sinon": "^9.2.4",
"sinon-chai": "^3.5.0",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
}
}