-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
{
"name": "c64jasm",
"version": "0.9.2",
"description": "A C64 macro assembler",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nurpax/c64jasm.git"
},
"main": "./dist/src/index.js",
"files": [
"dist/**/*",
"src/**/*",
"test/**/*",
"!.DS_Store"
],
"homepage": "https://nurpax.github.io/c64jasm/",
"author": {
"email": "[email protected]",
"name": "Janne Hellsten"
},
"bin": {
"c64jasm": "./dist/src/cli.js"
},
"scripts": {
"gen": "npx pegjs -o build/src/g_parser.js src/parser.pegjs",
"compile": "tsc -p .",
"watch": "tsc --watch -p .",
"t": "node build/asm.js test/petscii1.asm",
"test": "node build/test/test.js",
"asm": "node build/src/cli.js",
"docs": "cd docs && stack exec docbuild build",
"watch-docs": "cd docs && open-cli build/index.html && stack exec docbuild watch",
"docs-deploy": "npm run docs && gh-pages -d docs/build",
"dist": "rm -rf dist && mkdir -p build/src dist/src && npm run gen && cp build/src/g_parser.js dist/src && tsc -p tsconfig.dist.json"
},
"dependencies": {
"argparse": "^1.0.10",
"chokidar": "^2.0.4",
"colors": "^1.3.2",
"fastbitset": "^0.2.8",
"glob-fs": "^0.1.7",
"import-fresh": "^2.0.0",
"sprintf-js": "^1.1.1"
},
"devDependencies": {
"@types/argparse": "^1.0.34",
"@types/node": "^9.6.7",
"@types/sprintf-js": "^1.1.1",
"gh-pages": "^2.1.1",
"open-cli": "^5.0.0",
"pegjs": "^0.10.0",
"ts-node": "^7.0.1",
"typescript": "^4.1.3"
}
}