-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 872 Bytes
/
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
{
"name": "skiploom",
"version": "1.0.0",
"description": "Assembler / Linker compatible with the assembly syntax of the Epson S1C88 toolchain",
"main": "src/skip.cli.js",
"scripts": {
"nearly": "npx nearleyc --out src/as/grammar.js src/as/grammar.ne",
"prepare": "npm run nearly",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asterick/skiploom.git"
},
"keywords": [
"s1c88",
"assembler",
"linker",
"toolchain"
],
"author": "Bryon Vandiver",
"license": "Apache-2.0",
"bin": {
"skip": "bin/skip"
},
"bugs": {
"url": "https://github.com/asterick/skiploom/issues"
},
"homepage": "https://github.com/asterick/skiploom#readme",
"dependencies": {
"argparse": "^2.0.1",
"moo": "^0.5.2",
"nearley": "^2.20.1"
}
}