{
|
|
"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": "mkdir -p build && peggy -o build/parser.js lib/parser.pegjs && tsc",
|
|
"test": "ts-mocha"
|
|
},
|
|
"author": "Forest Belton <forest@homolo.gy>",
|
|
"license": "MIT",
|
|
"description": "A 'high-level' language for the Gameboy",
|
|
"bin": {
|
|
"gbuoy": "./gbuoy.js"
|
|
}
|
|
}
|