-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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
{
"name": "vscode-changelog-generator",
"displayName": "changelog-generator",
"description": "An extension to generate changelog.",
"version": "1.0.4",
"publisher": "axetroy",
"engines": {
"vscode": "^1.55.0"
},
"repository": {
"type": "git",
"url": "https://github.com/axetroy/vscode-changelog-generator.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/axetroy/vscode-changelog-generator/issues"
},
"homepage": "https://github.com/axetroy/vscode-changelog-generator#readme",
"keywords": [
"changelog"
],
"categories": [
"Other"
],
"icon": "resources/icon.png",
"main": "./out/index",
"activationEvents": [
"onCommand:changelog.generate"
],
"contributes": {
"commands": [
{
"command": "changelog.generate",
"title": "%cmd.generate.title%",
"category": "CHANGELOG"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceFilename =~ /^changelog(.md)?$/i",
"command": "changelog.generate",
"group": "changelog"
}
],
"commandPalette": [
{
"command": "changelog.generate"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"clean": "npx rimraf ./out",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"lint": "tslint -p ./ -c tslint.json",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"publish": "npx vsce publish"
},
"devDependencies": {
"@types/execa": "2.0.0",
"@types/mocha": "9.0.0",
"@types/node": "14.17.16",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.3.4",
"vscode": "1.1.37"
},
"dependencies": {
"conventional-changelog-cli": "^2.1.1",
"execa": "^5.0.0",
"vscode-nls-i18n": "^0.2.2"
}
}