-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
134 lines (134 loc) · 3.37 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
131
132
133
134
{
"name": "git-ease",
"displayName": "Git Ease - fancy UI",
"description": "Improve linking from Git repositories to external sources",
"version": "0.7.0",
"engines": {
"vscode": "^1.63.1"
},
"publisher": "RichardKotze",
"preview": true,
"icon": "resources/git-ease.png",
"galleryBanner": {
"color": "#232323",
"theme": "dark"
},
"author": {
"name": "Richard Kotze",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"git",
"co-authors",
"git-log",
"author",
"annotation",
"github",
"commit",
"emojis",
"jira",
"link"
],
"repository": {
"type": "git",
"url": "https://github.com/rkotze/git-ease.git"
},
"homepage": "https://github.com/rkotze/git-ease/blob/trunk/README.md",
"bugs": {
"url": "https://github.com/rkotze/git-ease/issues"
},
"extensionDependencies": [
"vscode.git"
],
"categories": [
"Other"
],
"activationEvents": [
"onView:git-ease.scm-panel"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Git Ease",
"properties": {
"gitEase.log.linkPatterns": {
"type": "array",
"default": [],
"description": "Define regex patterns in git log and link to external sources"
}
}
},
"commands": [
{
"command": "git-ease.refresh-panel",
"title": "Refresh Git log",
"category": "Git Ease",
"icon": "$(refresh)"
}
],
"menus": {
"view/title": [
{
"command": "git-ease.refresh-panel",
"when": "view == git-ease.scm-panel",
"group": "navigation"
}
]
},
"views": {
"scm": [
{
"type": "webview",
"id": "git-ease.scm-panel",
"name": "Git ease"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --devtool nosources-source-map --config ./build/node-extension.webpack.config.js",
"watch": "webpack --watch --devtool nosources-source-map --config ./build/node-extension.webpack.config.js",
"package": "webpack --mode production --config ./build/node-extension.webpack.config.js",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"test": "jest",
"ci": "npm run lint && npm run test",
"packvsce": "vsce package",
"vsix-publish": "vsce publish"
},
"devDependencies": {
"@primer/octicons": "^16.3.0",
"@testing-library/jest-dom": "^5.16.3",
"@testing-library/svelte": "^3.1.0",
"@types/glob": "^7.2.0",
"@types/jest": "^27.4.0",
"@types/node": "^12.20.42",
"@types/vscode": "^1.63.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"acorn": "^8.7.0",
"ajv": "^8.9.0",
"css-loader": "^6.5.1",
"dateformat": "^5.0.2",
"eslint": "^7.32.0",
"glob": "^7.2.0",
"jest": "^27.4.7",
"mini-css-extract-plugin": "^2.5.3",
"svelte": "^3.49.0",
"svelte-jester": "^2.3.2",
"svelte-loader": "^3.1.2",
"svelte-preprocess": "^4.10.4",
"tiny-relative-date": "^1.3.0",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.5",
"vsce": "^2.6.5",
"vscode-test": "^1.6.1",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}