package.json 447 B

1234567891011121314151617181920
  1. {
  2. "name": "jison-calculator",
  3. "version": "1.0.1",
  4. "description": "",
  5. "main": "app.js",
  6. "scripts": {
  7. "start": "cd src && node app.js",
  8. "test": "jest",
  9. "make": "cd src && jison jison/calculator.jison",
  10. "build": "bash scripts/build.sh"
  11. },
  12. "author": "",
  13. "license": "ISC",
  14. "dependencies": {
  15. "jison": "^0.4.18"
  16. },
  17. "devDependencies": {
  18. "jest": "^29.7.0"
  19. }
  20. }