-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2 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
{
"name": "git-commit-message-plus",
"displayName": "Git Commit Message Plus",
"version": "1.7.1",
"description": "Improved Git commit message editing",
"categories": [
"Programming Languages",
"Linters"
],
"keywords": [
"git",
"commit"
],
"icon": "images/icon.png",
"bugs": {
"url": "https://github.com/walles/git-commit-message-plus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/walles/git-commit-message-plus"
},
"license": "MIT",
"publisher": "walles",
"main": "./out/extension.js",
"scripts": {
"compile": "tsc -p ./",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint src --ext ts",
"package": "vsce package --no-git-tag-version --no-update-package-json 99.99.99",
"publish": "vsce publish",
"pretest": "npm run compile && npm run lint",
"test": "vscode-tmgrammar-test -g tests/support/diff.tmLanguage.json tests/unit/*.test && node ./out/test/runTest.js",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"scriptsComment": {
"package": [
"From: https://stackoverflow.com/a/67430480/473672"
]
},
"contributes": {
"grammars": [
{
"language": "git-commit",
"scopeName": "text.git-commit",
"path": "./syntaxes/git-commit.tmLanguage.json"
}
]
},
"activationEvents": [
"onLanguage:git-commit"
],
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^2.2.0",
"@vscode/vsce": "^2.19.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"prettier": "^2.8.3",
"typescript": "^4.9.3",
"vscode-tmgrammar-test": "^0.1.1"
},
"engines": {
"vscode": "^1.74.0"
}
}