forked from arnoudkooi/sn-scriptsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·117 lines (117 loc) · 2.56 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
117
{
"name": "sn-scriptsync",
"displayName": "sn-scriptsync",
"description": "ServiceNow ScriptSync for VS Code. (Personal work of Arnoud Kooi)",
"version": "1.8.2",
"license": "MIT",
"publisher": "arnoudkooicom",
"icon": "img/icon128.png",
"repository": {
"type": "git",
"url": "https://github.com/arnoudkooi/sn-scriptsync"
},
"bugs": {
"url": "https://github.com/arnoudkooi/sn-scriptsync/issues",
"email": "[email protected]"
},
"categories": [
"Linters",
"Programming Languages",
"Other"
],
"engines": {
"vscode": "^1.25.0"
},
"keywords": [
"ServiceNow",
"sn-scriptsync",
"sn-utils"
],
"activationEvents": [
"*",
"onView:scriptSync"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.snScriptSyncEnable",
"title": "sn-scriptsync: Enable"
},
{
"command": "extension.snScriptSyncDisable",
"title": "sn-scriptsync: Disable"
},
{
"command": "extension.openJsonSelection",
"title": "sn-scriptsync: Open Scope Files Selection"
},
{
"command": "extension.bgScriptMirror",
"title": "sn-scriptsync: Selection to Background Script Mirror",
"when": "editorLangId == javascript"
}
],
"menus": {
"editor/context": [
{
"command": "extension.bgScriptMirror",
"group": "sn-scriptsync: Selection to Background Script Mirror",
"when": "editorLangId == javascript"
}
]
},
"configuration": {
"type": "object",
"title": "sn-scriptsync",
"properties": {
"sn-scriptsync.path": {
"type": "string",
"default": "~/Documents/sn-scriptsync",
"description": "Scripts folder (Extension will auto activate when opening this folder)"
},
"sn-scriptsync.refresh": {
"type": "integer",
"default": "60",
"description": "Update check (Check the instance for update of the active record every xx seconds minimum 30, 0 to disable)"
}
}
},
"viewsContainers": {
"activitybar": [
{
"id": "sn-scriptsync",
"title": "sn-scriptsync",
"icon": "img/icon24.svg"
}
]
},
"views": {
"sn-scriptsync": [
{
"id": "scopeTreeView",
"name": "Scoped App Files"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^8.10.61",
"diff": ">=3.5.0",
"tslint": "^5.20.1",
"typescript": "^2.6.1",
"vscode": "^1.1.37"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"mkdirp": "^0.5.1",
"sass": "^1.26.9",
"ws": "^6.2.1"
}
}