forked from maziac/z80dismblr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1 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
{
"name": "z80dismblr",
"version": "1.5.2",
"publisher": "maziac",
"description": "A Z80 disassembler.",
"main": "./out/main.js",
"scripts": {
"prepublish": "tsc -p ./src",
"compile": "tsc -p ./src",
"tslint": "tslint ./src/**/*.ts",
"watch": "tsc -w -p ./src",
"test": "mocha -u tdd ./out/tests/",
"preinstall": "npx npm-force-resolutions",
"package": "vsce package",
"publish": "vsce publish",
"build-docs": "typedoc --out ./out/typedoc --target ES6 --module commonjs --exclude \"**/tests/**/*\" ./src"
},
"author": {
"name": "Thomas Busse"
},
"license": "MIT",
"dependencies": {
"typescript": "^3.7.3"
},
"repository": {
"type": "git",
"url": "https://github.com/maziac/z80dismblr"
},
"devDependencies": {
"@types/mocha": "5.2.7",
"@types/node": "12.12.20",
"minimist": "^1.2.5",
"mocha": "^8.0.1",
"tslint": "5.20.1",
"vsce": "^1.71.0",
"vscode": "^1.1.36"
},
"resolutions": {
"minimist": "^1.2.5"
}
}