package.json 738 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "syntax-error",
  3. "version": "1.4.0",
  4. "description": "detect and report syntax errors in source code strings",
  5. "main": "index.js",
  6. "dependencies": {
  7. "acorn-node": "^1.2.0"
  8. },
  9. "devDependencies": {
  10. "tap": "^1.1.0"
  11. },
  12. "scripts": {
  13. "test": "tap test/*.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/substack/node-syntax-error.git"
  18. },
  19. "homepage": "https://github.com/substack/node-syntax-error",
  20. "keywords": [
  21. "syntax",
  22. "error",
  23. "esprima",
  24. "stack",
  25. "line",
  26. "column"
  27. ],
  28. "author": {
  29. "name": "James Halliday",
  30. "email": "mail@substack.net",
  31. "url": "http://substack.net"
  32. },
  33. "license": "MIT",
  34. "engine": {
  35. "node": ">=0.6"
  36. }
  37. }