-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.43 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
{
"name": "gitignore-adder",
"displayName": "Gitignore Adder",
"description": "Add files to gitignore easily.",
"repository": "https://github.com/abeatrix/gitignore-adder",
"publisher": "beatrix",
"version": "0.4.0",
"icon": "images/blind.png",
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:gitignore-adder.creator",
"onCommand:gitignore-adder.adder"
],
"browser": "./dist/web/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Sourcegraph extension configuration",
"properties": {
"gitignore-adder.append": {
"type": [
"boolean"
],
"default": true,
"description": "Add to the end of the current .gitignore file. Set it to false to add new line to the top instead."
}
}
},
"commands": [
{
"command": "gitignore-adder.creator",
"title": "Create empty .gitignore at root"
},
{
"command": "gitignore-adder.adder",
"title": "Add to .gitignore"
}
],
"menus": {
"explorer/context": [
{
"command": "gitignore-adder.adder",
"when": "resourceScheme == file",
"group": "navigation"
}
],
"editor/context": [
{
"command": "gitignore-adder.adder",
"when": "resourceScheme == file",
"group": "navigation"
}
]
}
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ."
},
"devDependencies": {
"@types/vscode": "^1.64.0",
"@types/mocha": "^9.1.0",
"eslint": "^8.9.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"mocha": "^9.2.1",
"typescript": "^4.5.5",
"@vscode/test-web": "^0.0.22",
"ts-loader": "^9.2.6",
"webpack": "^5.69.1",
"webpack-cli": "^4.9.2",
"@types/webpack-env": "^1.16.3",
"assert": "^2.0.0",
"process": "^0.11.10"
}
}