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

31 lines
797 B
JSON

{
"name": "points-on-curve",
"version": "0.2.0",
"description": "Estimate points on a bezier curve or a set of connexted bezier curves",
"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/bezier-points.git"
},
"keywords": [
"Bezier",
"graphics"
],
"author": "Preet Shihn",
"license": "MIT",
"bugs": {
"url": "https://github.com/pshihn/bezier-points/issues"
},
"homepage": "https://github.com/pshihn/bezier-points#readme",
"devDependencies": {
"tslint": "^6.1.1",
"typescript": "^3.8.3"
}
}