package.json 349 B

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