package.json 917 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "regjsgen",
  3. "version": "0.5.0",
  4. "description": "Generate regular expressions from regjsparser’s AST.",
  5. "homepage": "https://github.com/bnjmnt4n/regjsgen",
  6. "main": "regjsgen.js",
  7. "keywords": [
  8. "ast",
  9. "generate",
  10. "regex",
  11. "regexp",
  12. "regular expressions"
  13. ],
  14. "license": "MIT",
  15. "author": {
  16. "name": "Benjamin Tan",
  17. "url": "https://bnjmnt4n.now.sh/"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/bnjmnt4n/regjsgen.git"
  22. },
  23. "bugs": "https://github.com/bnjmnt4n/regjsgen/issues",
  24. "files": [
  25. "LICENSE",
  26. "regjsgen.js"
  27. ],
  28. "scripts": {
  29. "test": "node tests/tests.js",
  30. "coverage": "istanbul cover --report html tests/tests.js",
  31. "update-fixtures": "node tests/update-fixtures.js"
  32. },
  33. "devDependencies": {
  34. "codecov": "^3.1.0",
  35. "istanbul": "~0.4.5",
  36. "regjsparser": "~0.4.0",
  37. "request": "^2.88.0"
  38. }
  39. }