This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
116 lines (116 loc) · 2.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vscode-npm",
"displayName": "npm",
"description": "npm commands for VSCode",
"version": "3.3.0",
"publisher": "fknop",
"icon": "npm_icon.png",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:npm-script.installSavedPackages",
"onCommand:npm-script.installPackage",
"onCommand:npm-script.installPackageDev",
"onCommand:npm-script.runScript",
"onCommand:npm-script.runScriptLatest",
"onCommand:npm-script.init",
"onCommand:npm-script.uninstallPackage",
"onCommand:npm-script.uninstallPackageDev",
"onCommand:npm-script.publish",
"onCommand:npm-script.deprecate",
"onCommand:npm-script.raw",
"onCommand:npm-script.terminate",
"onCommand:npm-script.start",
"onCommand:npm-script.test"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "npm-script.start",
"title": "npm start",
"category": "npm"
},
{
"command": "npm-script.test",
"title": "npm test",
"category": "npm"
},
{
"command": "npm-script.terminate",
"title": "Terminate running npm script",
"category": "npm"
},
{
"command": "npm-script.installSavedPackages",
"title": "Install saved packages",
"category": "npm"
},
{
"command": "npm-script.installPackage",
"title": "Install and save dependency",
"category": "npm"
},
{
"command": "npm-script.installPackageDev",
"title": "Install and save dev. dependency",
"category": "npm"
},
{
"command": "npm-script.runScript",
"title": "Run npm script",
"category": "npm"
},
{
"command": "npm-script.runScriptLatest",
"title": "Run last npm script",
"category": "npm"
},
{
"command": "npm-script.init",
"title": "Initialize npm package",
"category": "npm"
},
{
"command": "npm-script.uninstallPackage",
"title": "Uninstall dependency",
"category": "npm"
},
{
"command": "npm-script.uninstallPackageDev",
"title": "Uninstall dev. dependency",
"category": "npm"
},
{
"command": "npm-script.publish",
"title": "Publish package",
"category": "npm"
},
{
"command": "npm-script.deprecate",
"title": "Deprecate package",
"category": "npm"
},
{
"command": "npm-script.raw",
"title": "Raw npm command",
"category": "npm"
}
]
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"dependencies": {
"tree-kill": "^1.0.0"
}
}