package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "regjsgen",
  3. "version": "0.5.2",
  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://ofcr.se/"
  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-MIT.txt",
  26. "regjsgen.js"
  27. ],
  28. "scripts": {
  29. "test": "node tests/tests.js",
  30. "coverage": "nyc --reporter=html npm test",
  31. "report-coverage": "nyc --reporter=lcov npm test && codecov",
  32. "update-fixtures": "node tests/update-fixtures.js"
  33. },
  34. "devDependencies": {
  35. "codecov": "^3.7.0",
  36. "nyc": "^15.0.1",
  37. "regjsparser": "~0.6.4",
  38. "request": "^2.88.2"
  39. },
  40. "__npminstall_done": "Thu Dec 24 2020 20:20:45 GMT+0800 (CST)",
  41. "_from": "regjsgen@0.5.2",
  42. "_resolved": "https://registry.npm.taobao.org/regjsgen/download/regjsgen-0.5.2.tgz"
  43. }