-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.82 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
{
"name": "gfmarkup",
"displayName": "GameFAQs Markup",
"description": "Syntax highlighting and preview for GameFAQs Markup files",
"version": "0.6.1",
"publisher": "mtkennerly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mtkennerly/gfmarkup-vscode"
},
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "gfmarkup.scanForGfm",
"title": "Scan files for markup flag",
"category": "GameFAQs Markup"
},
{
"command": "gfmarkup.openPreview",
"title": "Open preview",
"category": "GameFAQs Markup"
}
],
"configuration": {
"type": "object",
"title": "GameFAQs Markup",
"properties": {
"gfmarkup.autoScan": {
"type": "boolean",
"default": true,
"description": "Automatically scan all files for the markup flag"
},
"gfmarkup.imageDirectory": {
"type": "string",
"default": "${documentFolder}",
"description": "Where to find images used in markup"
},
"gfmarkup.imageFiles": {
"type": "string",
"default": "${documentName}.${id}",
"description": "Naming style of images used in markup"
}
}
},
"configurationDefaults": {
"[gfmarkup]": {
"editor.wordWrap": "on",
"editor.quickSuggestions": false
}
},
"languages": [
{
"id": "gfmarkup",
"extensions": [
".gfm.txt"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "gfmarkup",
"scopeName": "source.gfmarkup",
"path": "./syntaxes/gfmarkup.tmGrammar.json"
}
]
},
"scripts": {
"build": "tsc -p ./",
"build:watch": "tsc -watch -p ./",
"bundle": "webpack --mode production",
"bundle:watch": "webpack --mode development --watch",
"lint": "npx tslint --fix --project .",
"pretest": "npm run build",
"test": "node ./out/tests/runTests.js",
"vscode:prepublish": "npm run build && npm run bundle"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/lodash.escape": "^4.0.6",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/vscode": "^1.38.0",
"decache": "^4.5.1",
"expect": "^24.9.0",
"glob": "^7.1.4",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"remap-istanbul": "^0.13.0",
"strip-indent": "^3.0.0",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode-test": "^1.2.0",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"lodash.escape": "^4.0.1"
}
}