A "high-level" language for the Gameboy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
678 B

{
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"peggy": "^1.2.0",
"ts-mocha": "^8.0.0",
"typescript": "^4.4.3"
},
"name": "gbuoy",
"version": "1.0.0",
"main": "gbuoy.js",
"mocha": {
"spec": "test/**/*.spec.ts"
},
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc && peggy -o build/lib/parser.js lib/parser.pegjs",
"test": "ts-mocha"
},
"author": "Forest Belton <forest@homolo.gy>",
"license": "MIT",
"description": "A 'high-level' language for the Gameboy",
"bin": {
"gbuoy": "./gbuoy.js"
}
}