package.json 534 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "svg-path-parser",
  3. "version": "1.1.0",
  4. "description": "A parser for SVG's path syntax",
  5. "license": "MIT",
  6. "main": "index.js",
  7. "scripts": {
  8. "prepublish": "pegjs -o parser.js grammar.peg"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/hughsk/svg-path-parser.git"
  13. },
  14. "dependencies": {},
  15. "devDependencies": {
  16. "pegjs": "^0.10.0"
  17. },
  18. "readmeFilename": "README.md",
  19. "keywords": [
  20. "svg",
  21. "path",
  22. "d",
  23. "attribute",
  24. "parser",
  25. "lines",
  26. "drawing"
  27. ]
  28. }