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

2 years ago
2 years ago
  1. {
  2. "devDependencies": {
  3. "@types/chai": "^4.2.21",
  4. "@types/mocha": "^9.0.0",
  5. "@types/node": "^16.9.1",
  6. "chai": "^4.3.4",
  7. "mocha": "^8.4.0",
  8. "peggy": "^1.2.0",
  9. "ts-mocha": "^8.0.0",
  10. "typescript": "^4.4.3"
  11. },
  12. "name": "gbuoy",
  13. "version": "1.0.0",
  14. "main": "gbuoy.js",
  15. "mocha": {
  16. "spec": "test/**/*.spec.ts"
  17. },
  18. "directories": {
  19. "lib": "lib"
  20. },
  21. "scripts": {
  22. "build": "tsc && peggy -o build/lib/parser.js lib/parser.pegjs",
  23. "test": "ts-mocha"
  24. },
  25. "author": "Forest Belton <forest@homolo.gy>",
  26. "license": "MIT",
  27. "description": "A 'high-level' language for the Gameboy",
  28. "bin": {
  29. "gbuoy": "./gbuoy.js"
  30. }
  31. }