aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json11
1 files changed, 7 insertions, 4 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 95ec6cff6..e2bc72f32 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -13,18 +13,17 @@
13 "Other" 13 "Other"
14 ], 14 ],
15 "engines": { 15 "engines": {
16 "vscode": "^1.33.0" 16 "vscode": "^1.36.0"
17 }, 17 },
18 "scripts": { 18 "scripts": {
19 "vscode:prepublish": "npm run compile", 19 "vscode:prepublish": "npm run compile",
20 "package": "vsce package", 20 "package": "vsce package",
21 "compile": "tsc -p ./ && shx cp src/utils/terminateProcess.sh out/utils/terminateProcess.sh", 21 "compile": "tsc -p ./ && shx cp src/utils/terminateProcess.sh out/utils/terminateProcess.sh",
22 "watch": "tsc -watch -p ./", 22 "watch": "tsc -watch -p ./",
23 "postinstall": "node ./node_modules/vscode/bin/install",
24 "fix": "prettier **/*.{json,ts} --write && tslint --project . --fix", 23 "fix": "prettier **/*.{json,ts} --write && tslint --project . --fix",
25 "lint": "tslint --project .", 24 "lint": "tslint --project .",
26 "test": "node node_modules/vscode/bin/test",
27 "prettier": "prettier **/*.{json,ts}", 25 "prettier": "prettier **/*.{json,ts}",
26 "test": "node ./out/test/runTest.js",
28 "travis": "npm run compile && npm run test && npm run lint && npm run prettier -- --write && git diff --exit-code" 27 "travis": "npm run compile && npm run test && npm run lint && npm run prettier -- --write && git diff --exit-code"
29 }, 28 },
30 "prettier": { 29 "prettier": {
@@ -39,13 +38,17 @@
39 "@types/mocha": "^5.2.7", 38 "@types/mocha": "^5.2.7",
40 "@types/node": "^10.14.13", 39 "@types/node": "^10.14.13",
41 "@types/seedrandom": "^2.4.28", 40 "@types/seedrandom": "^2.4.28",
41 "@types/glob": "^7.1.1",
42 "@types/vscode": "^1.36.0",
43 "glob": "^7.1.4",
44 "mocha": "^6.2.0",
42 "prettier": "^1.18.2", 45 "prettier": "^1.18.2",
43 "shx": "^0.3.1", 46 "shx": "^0.3.1",
44 "tslint": "^5.18.0", 47 "tslint": "^5.18.0",
45 "tslint-config-prettier": "^1.18.0", 48 "tslint-config-prettier": "^1.18.0",
46 "typescript": "^3.5.3", 49 "typescript": "^3.5.3",
47 "vsce": "^1.66.0", 50 "vsce": "^1.66.0",
48 "vscode": "^1.1.35" 51 "vscode-test": "^1.2.0"
49 }, 52 },
50 "activationEvents": [ 53 "activationEvents": [
51 "onLanguage:rust", 54 "onLanguage:rust",