Files
infocom-systems-design/node_modules/points-on-path/package.json
2025-10-03 22:27:28 +03:00

35 lines
845 B
JSON

{
"name": "points-on-path",
"version": "0.2.1",
"description": "Estimate points on a SVG path",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "tslint -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pshihn/points-on-path.git"
},
"keywords": [
"SVG",
"graphics"
],
"author": "Preet Shihn",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/points-on-path/issues"
},
"homepage": "https://github.com/pshihn/points-on-path#readme",
"devDependencies": {
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"path-data-parser": "0.1.0",
"points-on-curve": "0.2.0"
}
}