-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.08 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
{
"name": "vscode-procfile",
"displayName": "Procfile",
"description": "Grammar & features for Procfiles",
"license": "BSD-3-Clause",
"version": "1.1.8",
"icon": "assets/icon.png",
"publisher": "benspaulding",
"author": {
"name": "Ben Spaulding",
"email": "[email protected]",
"url": "https://www.benspaulding.com"
},
"homepage": "https://github.com/benspaulding/vscode-procfile",
"repository": {
"type": "git",
"url": "https://github.com/benspaulding/vscode-procfile.git"
},
"bugs": {
"url": "https://github.com/benspaulding/vscode-procfile/issues"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Formatters",
"Linters",
"Programming Languages"
],
"keywords": [
"heroku",
"procfile"
],
"galleryBanner": {
"color": "white",
"theme": "light"
},
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "procfile",
"aliases": [
"Procfile"
],
"extensions": [
".procfile"
],
"filenames": [
"Procfile"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "procfile",
"scopeName": "source.procfile",
"path": "./syntaxes/procfile.tmLanguage.json"
}
],
"configuration": {
"title": "Procfile",
"properties": {
"procfile.insertSpace": {
"type": "boolean",
"default": true,
"description": "Separate the process type and its command with a space when formatting.",
"markdownDescription": "Separate process type and command with a space when formatting.\\\nE.g., `name: command` as opposed to `name:command`."
}
}
}
},
"__metadata": {
"id": "da8ce8c1-1732-496c-b639-5f8cf57ddf38",
"publisherDisplayName": "Ben Spaulding",
"publisherId": "27f62f83-b01c-4b89-b543-4dbb2d4155e8"
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"ts-compile": "tsc -p ./",
"ts-watch": "npm run ts-compile -- -w",
"lint": "eslint . --ext={j,t}s --fix",
"format": "prettier '**/*.{j,t}s' '**/*.json' '**/*.md' '**/*.y*ml' --write",
"pretest": "npm run compile && npm run lint && npm run format",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@tsconfig/node20": "*",
"@types/glob": "*",
"@types/mocha": "*",
"@types/node": "^20.0.0",
"@types/vscode": "*",
"@typescript-eslint/eslint-plugin": "*",
"@typescript-eslint/parser": "*",
"@vscode/test-electron": "*",
"@vscode/vsce": "*",
"esbuild": "^0.20.1",
"eslint": "*",
"eslint-config-prettier": "*",
"eslint-plugin-prettier": "*",
"glob": "^8.1",
"mocha": "*",
"ovsx": "^0.8.3",
"prettier": "*",
"typescript": "*"
}
}