forked from microsoft/vscode-mock-debug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.61 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
136
137
{
"activationEvents": [
"onDebug",
"onCommand:extension.ether-debug.getContractFile",
"onCommand:extension.ether-debug.provideInitialConfigurations"
],
"author": {
"email": "romulus108@protonmail.com",
"name": "Sean Batzel"
},
"bugs": {
"url": "https://github.com/ethdbg/vscode-ethdbg/issues"
},
"categories": [
"Debuggers",
"Ethereum",
"Solidity",
"debug",
"truffle",
"testRPC",
"contracts",
"smart contracts"
],
"contributes": {
"breakpoints": [
{
"language": "solidity"
}
],
"debuggers": [
{
"configurationAttributes": {
"launch": {
"properties": {
"program": {
"default": "${workspaceFolder}/${command:AskForContractFile}",
"description": "Absolute path to a text file.",
"type": "string"
},
"stopOnAllBreakpoints": {
"default": true,
"description": "Stop on all breakpoints in all files",
"type": "boolean"
},
"inc": {
"type": "array",
"description": "List of include directories",
"default": []
},
"execArgs": {
"type": "array",
"description": "List of arguments passed on to the executable.",
"default": []
},
"stopOnEntry": {
"default": true,
"description": "Automatically stop after launch.",
"type": "boolean"
},
"trace": {
"default": true,
"description": "Enable logging of the Debug Adapter Protocol.",
"type": "boolean"
}
},
"required": [
"program",
"root"
]
}
},
"label": "Ethereum Debug",
"languages": [
"solidity"
],
"program": "./out/etherDebug.js",
"runtime": "node",
"type": "ether-debug",
"initialConfigurations": "extension.ether-debug.provideInitialConfigurations"
}
]
},
"contributors": [
{
"email": "aplaza@liquidthink.net",
"name": "Andrew Plaza",
"url": "http://code.liquidthink.net"
}
],
"dependencies": {
"@types/byline": "^4.2.31",
"byline": "^5.0.0",
"lodash": "^4.17.4",
"vscode-debugadapter": "^1.25.0-pre.0",
"vscode-debugprotocol": "^1.25.0-pre.0",
"yargs": "^10.0.3"
},
"description": "An Ethereum Solidity debugger for developing smart contracts in VSCode",
"devDependencies": {
"@types/mocha": "^2.2.44",
"@types/node": "^6.0.50",
"mocha": "^3.5.0",
"tslint": "^5.8.0",
"typescript": "^2.5.3",
"vsce": "^1.31.2",
"vscode": "^1.1.6",
"vscode-debugadapter-testsupport": "^1.24.0"
},
"displayName": "Ethereum Debug",
"engines": {
"node": "^8.9.3",
"vscode": "^1.19.0"
},
"icon": "images/ether-debug-icon.png",
"keywords": [
"multi-root ready"
],
"main": "./out/extension",
"name": "ether-debug",
"private": true,
"publisher": "romulus10",
"repository": {
"type": "git",
"url": "https://github.com/ethdbg/vscode-ethdbg"
},
"scripts": {
"compile": "tsc -p ./src",
"package": "vsce package",
"postinstall": "node ./node_modules/vscode/bin/install",
"prepublish": "tsc -p ./src",
"publish": "vsce publish",
"test": "mocha -u tdd ./out/tests/",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w -p ./src"
},
"version": "0.25.0"
}