-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 1.78 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
{
"name": "verilog-formatter",
"displayName": "verilog-formatter",
"description": "A Verilog code formatter using the iStyle Verilog formatter",
"version": "1.0.1",
"license": "MIT",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Formatters"
],
"activationEvents": [
"onLanguage:verilog"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Verilog formatter",
"properties": {
"verilog-formatter.istyle.path": {
"scope": "window",
"type": "string",
"default": "iStyle",
"description": "Path to the istyle-verilog-formatter binary"
},
"verilog-formatter.istyle.args": {
"scope": "window",
"type": "string",
"default": "",
"description": "Additional arguments to pass to istyle-verilog-formatter"
},
"verilog-formatter.istyle.style": {
"scope": "window",
"type": "string",
"default": "Indent only",
"description": "iStyle predefined formatting style",
"enum": [
"ANSI",
"K&R",
"GNU",
"Indent only"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"temp": "^0.9.0"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"@types/temp": "^0.8.32",
"tslint": "^5.8.0",
"typescript": "^3.1.4",
"vscode": "^1.1.37"
},
"publisher": "IsaacT",
"homepage": "https://github.com/IsaacJT/Verilog-Formatter",
"repository": {
"type": "git",
"url": "https://github.com/IsaacJT/Verilog-Formatter.git"
},
"bugs": {
"url": "https://github.com/IsaacJT/Verilog-Formatter/issues"
}
}