-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
135 lines (135 loc) · 3.21 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
135
{
"name": "vscode-woke",
"displayName": "woke",
"description": "Detect non-inclusive language in your source code.",
"version": "0.2.0",
"publisher": "get-woke",
"author": {
"email": "celfring@gmail.com",
"name": "Caitlin Elfring"
},
"license": "SEE LICENSE IN LICENSE",
"engines": {
"vscode": "^1.48.0"
},
"categories": [
"Linters"
],
"keywords": [
"inclusive",
"insensitive",
"language",
"linter"
],
"homepage": "https://github.com/get-woke/vscode-woke/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/get-woke/vscode-woke.git"
},
"bugs": {
"url": "https://github.com/get-woke/vscode-woke/issues"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"activationEvents": [
"onFileSystem:file",
"onCommand:woke.run"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "woke.run",
"title": "Woke: Run"
}
],
"configuration": {
"title": "woke",
"type": "object",
"properties": {
"woke.enable": {
"description": "Whether woke is enabled or not.",
"type": "boolean",
"scope": "resource",
"default": true
},
"woke.executablePath": {
"description": "Path to the woke executable.",
"examples": [
"/usr/local/bin/woke"
],
"type": "string",
"scope": "resource"
},
"woke.run": {
"description": "Whether woke is run on save or on type.",
"type": "string",
"enum": [
"onSave",
"onType",
"manual"
],
"scope": "resource",
"default": "onSave"
},
"woke.customArgs": {
"description": "Custom arguments to woke.",
"type": "array",
"items": {
"type": "string"
},
"scope": "resource",
"default": []
},
"woke.disableVersionCheck": {
"description": "Whether to disable woke binary version check, which prompt for updating when outdated version found.",
"type": "boolean",
"scope": "application",
"default": false
}
}
}
},
"scripts": {
"compile": "webpack --mode none",
"test-compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "webpack --mode none --watch",
"pretest": "npm run test-compile && npm run compile",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "webpack --mode production",
"deploy": "vsce publish",
"postversion": "git push && git push --tags",
"bump:patch": "npm version patch -m 'Bump version %s'",
"bump:minor": "npm version minor -m 'Bump version %s'",
"bump:major": "npm version major -m 'Bump version %s'"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/isexe": "^2.0.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/semver": "^7.3.4",
"@types/tmp": "^0.2.0",
"@types/vscode": "^1.48.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"filemanager-webpack-plugin": "^3.0.0-alpha.2",
"glob": "^7.1.6",
"isexe": "^2.0.0",
"mocha": "^8.1.3",
"path": "^0.12.7",
"semver": "^7.3.2",
"tmp": "^0.2.1",
"ts-loader": "^8.0.6",
"typescript": "^4.0.2",
"vsce": "^1.81.1",
"vscode-test": "^1.4.0",
"webpack": "^5.1.3",
"webpack-cli": "^4.1.0"
}
}