package.json 721 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "xml-name-validator",
  3. "description": "Validates whether a string matches the production for an XML name or qualified name",
  4. "keywords": [
  5. "xml",
  6. "name",
  7. "qname"
  8. ],
  9. "version": "3.0.0",
  10. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  11. "license": "Apache-2.0",
  12. "repository": "jsdom/xml-name-validator",
  13. "main": "lib/xml-name-validator.js",
  14. "files": [
  15. "lib/"
  16. ],
  17. "scripts": {
  18. "prepublish": "node scripts/generate-grammar.js < lib/grammar.pegjs > lib/generated-parser.js",
  19. "pretest": "npm run prepublish",
  20. "test": "mocha",
  21. "lint": "eslint ."
  22. },
  23. "devDependencies": {
  24. "eslint": "^2.9.0",
  25. "mocha": "^2.4.5",
  26. "waka": "0.1.2"
  27. }
  28. }