-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.61 KB
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
{
"name": "sncmder",
"displayName": "sncmder",
"description": "vscode extension for service-now development",
"version": "0.0.1",
"publisher": "mak",
"repository": {
"type": "git",
"url": "https://github.com/mak42/sncmder"
},
"license": "MIT",
"engines": {
"vscode": "^1.14.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.snInit",
"workspaceContains:config.json"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.snInit",
"title": "sncmder init"
},
{
"command": "extension.snPull",
"title": "sncmder pull"
},
{
"command": "extension.snPush",
"title": "sncmder push"
},
{
"command": "extension.snEval",
"title": "sncmder eval"
},
{
"command": "extension.snDebugger",
"title": "sncmder debugger"
},
{
"command": "extension.snRebuild",
"title": "sncmder rebuild"
}
]
},
"dependencies": {
"html2plaintext": "^1.1.1",
"jsonfile": "^2.4.0",
"opn": "^5.1.0",
"promise": "^7.1.1",
"querystring": "0.2.0",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"shelljs": "^0.7.5",
"xml2js": "^0.4.17"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"mocha": "^2.3.3",
"eslint": "^3.6.0",
"@types/node": "^6.0.40",
"@types/mocha": "^2.2.32"
}
}