forked from rlnt/vscode-keepachangelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 4.3 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
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "keep-a-changelog",
"displayName": "Keep a Changelog",
"version": "1.2.0",
"description": "An extension that provides snippets for markdown files to create a changelog with the ruleset of Keep a Changelog.",
"categories": [
"Snippets"
],
"keywords": [
"markdown",
"changelog",
"keep a changelog",
"snippets",
"changelog snippets"
],
"bugs": {
"url": "https://github.com/RLNT/vscode-keepachangelog/issues",
"email": "team@rlnt.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/RLNT/vscode-keepachangelog.git"
},
"license": "MIT",
"author": {
"name": "RLNT"
},
"publisher": "RLNT",
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"compile": "tsc -p ./",
"deploy": "vsce publish",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild-watch": "npm run -S esbuild-base -- --sourcemap --watch",
"esbuild": "npm run -S esbuild-base -- --sourcemap",
"format": "prettier --write",
"lint": "eslint src --ext ts",
"prepare": "husky install",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"pretty-quick": "pretty-quick --staged",
"test-compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"contributes": {
"configuration": {
"title": "Keep a Changelog",
"properties": {
"keep-a-changelog.validFiles": {
"title": "Valid Files",
"description": "The list of file names in which changelog snippets should be shown.\nThis is useful so snippets are not suggested in all Markdown files.\nFile names don't need the file extension and are case insensitive.",
"type": "array",
"default": [
"changelog"
]
},
"keep-a-changelog.untitledFile": {
"title": "Untitled File",
"description": "When true, snippets will also work in untitled markdown files.",
"type": "boolean",
"default": false
},
"keep-a-changelog.triggerCharacter": {
"title": "Trigger Character",
"description": "When true, changelog snippet suggestions will be triggered by the character c.",
"type": "boolean",
"default": true
},
"keep-a-changelog.dateFormat": {
"title": "Date Format",
"description": "The format of the date in the changelog.",
"type": "string",
"enum": [
"DD/MM/YYYY",
"MM/DD/YYYY",
"YYYY/MM/DD"
],
"default": "YYYY/MM/DD"
},
"keep-a-changelog.dateSeparator": {
"title": "Date Separator",
"description": "The separator used for the date format in the changelog.",
"type": "string",
"default": "-"
},
"keep-a-changelog.defaultAuthor": {
"title": "Default Author",
"description": "The default author used for URLs within the changelog.\nIf empty, it will use tab-completion within the snippet.\nCan be overriden via workspace settings.",
"type": "string",
"default": ""
},
"keep-a-changelog.defaultRepository": {
"title": "Default Repository",
"description": "The default repository used for URLs within the changelog.\nIf empty, it will use tab-completion within the snippet.\nCan be overriden via workspace settings.",
"type": "string",
"default": ""
}
}
}
},
"activationEvents": [
"onLanguage:markdown"
],
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.58.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"esbuild": "^0.12.17",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"glob": "^7.1.7",
"husky": "^7.0.1",
"mocha": "^8.4.0",
"prettier": "^2.3.2",
"prettier-plugin-packagejson": "^2.2.11",
"pretty-quick": "^3.1.1",
"typescript": "^4.3.2",
"vsce": "^1.96.1",
"vscode-test": "^1.5.2"
},
"engines": {
"vscode": "^1.58.0"
},
"icon": "images/icon.png",
"markdown": "github"
}