-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.38 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.38 KB
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": "monaco-debugger",
"version": "0.0.15",
"description": "This is a webclient for the microsoft debug adapter.",
"main": "dist/debugger.js",
"types": "dist/debugger.d.ts",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src/**",
"fix": "eslint src/** --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/polylith/monacho-debugger.git"
},
"bugs": {
"url": "https://github.com/polylith/monacho-debugger/issues"
},
"homepage": "https://github.com/polylith/monacho-debugger#readme",
"author": "Ron Gruse (DelphiXE5)",
"license": "GPL-3.0",
"dependencies": {
"vscode-debugprotocol": "^1.39.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"prettier": "^1.19.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"files": [
"dist/**/*"
],
"keywords": [
"debugger",
"monaco",
"monaco editor",
"debug",
"debugAdapter"
]
}