-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "sus-vscode",
"displayName": "Sus Test Provider",
"description": "Ruby sus gem test provider.",
"version": "0.7.0",
"publisher": "socketry",
"license": "MIT",
"repository": "https://github.com/socketry/sus-vscode",
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Testing"
],
"activationEvents": [
"workspaceContains:config/sus.rb",
"workspaceContains:test/**/*.rb"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./",
"download-api": "dts main && dts dev",
"postinstall": "npm run download-api",
"test": "vscode-test"
},
"devDependencies": {
"@types/ndjson": "^2.0.1",
"@types/node": "^16.18.34",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"@vscode/dts": "^0.4.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.26.0",
"typescript": "^5.3.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"ndjson": "^2.0.0"
}
}