You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
534 B
28 lines
534 B
{
|
|
"name": "svg-path-parser",
|
|
"version": "1.1.0",
|
|
"description": "A parser for SVG's path syntax",
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"prepublish": "pegjs -o parser.js grammar.peg"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/hughsk/svg-path-parser.git"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"pegjs": "^0.10.0"
|
|
},
|
|
"readmeFilename": "README.md",
|
|
"keywords": [
|
|
"svg",
|
|
"path",
|
|
"d",
|
|
"attribute",
|
|
"parser",
|
|
"lines",
|
|
"drawing"
|
|
]
|
|
}
|
|
|