mirror of https://github.com/ghostfolio/ghostfolio
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.
35 lines
845 B
35 lines
845 B
{
|
|
"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"
|
|
}
|
|
}
|