-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 973 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
{
"name": "vscode-nvm",
"displayName": "vscode nvm integration",
"description": "nvmrc integration",
"version": "0.0.2",
"license": "MIT",
"author": {
"name": "abumalick"
},
"repository": {
"url": "https://github.com/abumalick/vscode-nvm",
"type": "git"
},
"publisher": "abumalick",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:.nvmrc"
],
"main": "./out/extension",
"contributes": {
"commands": []
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vsce": "^1.53.2",
"vscode": "^1.1.25"
}
}