package.json 777 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "version": "0.9.0",
  3. "name": "catharsis",
  4. "description": "A JavaScript parser for Google Closure Compiler and JSDoc type expressions.",
  5. "author": "Jeff Williams <jeffrey.l.williams@gmail.com>",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/hegemonic/catharsis"
  9. },
  10. "bugs": "https://github.com/hegemonic/catharsis/issues",
  11. "main": "catharsis.js",
  12. "dependencies": {
  13. "lodash": "^4.17.15"
  14. },
  15. "devDependencies": {
  16. "ajv": "^6.12.2",
  17. "mocha": "^8.0.1",
  18. "pegjs": "^0.10.0",
  19. "should": "^13.2.3",
  20. "should-equal": "^2.0.0"
  21. },
  22. "engines": {
  23. "node": ">= 10"
  24. },
  25. "scripts": {
  26. "prepare": "./node_modules/pegjs/bin/pegjs ./lib/parser.pegjs",
  27. "test": "./node_modules/mocha/bin/mocha"
  28. },
  29. "license": "MIT"
  30. }