-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "indesigncleanup",
"displayName": "inDesign and inCopy Cleanup",
"description": "No more hidden characters, copied from inDesign or inCopy! No more hyphens, where there not should be any. This extension cleans your file!",
"version": "0.0.1",
"publisher": "blickvisual",
"author": {
"name": "Blick Visual"
},
"icon": "images/blick.jpg",
"galleryBanner": {
"color": "#fe0501",
"theme": "dark"
},
"homepage": "https://github.com/blickvisual/vscode_blickIndesignCleanup",
"bugs": {
"url": "https://github.com/blickvisual/vscode_blickIndesignCleanup/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/blickvisual/vscode_blickIndesignCleanup.git"
},
"categories": [
"Formatters",
"Other"
],
"engines": {
"vscode": "^1.23.0"
},
"activationEvents": [
"onCommand:extension.blickIndesignCleanup"
],
"main": "./extension",
"contributes": {
"commands": [{
"command": "extension.blickIndesignCleanup",
"title": "inDesign and inCopy Cleanup"
}]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"eslint": "^4.11.0",
"@types/node": "^8.10.25",
"@types/mocha": "^2.2.42"
}
}