UNPKG

bee-spline

Version:

Creates a spline around specified elements

46 lines (45 loc) 1.18 kB
{ "name": "bee-spline", "version": "0.0.1", "description": "Creates a spline around specified elements", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "test": "jest --config jestconfig.json", "build": "tsc", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "prepare": "npm run build", "prepublishOnly": "npm test && npm run lint", "preversion": "npm run lint", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/loopspeed/bee-spline.git" }, "keywords": [ "Spline", "Line", "Draw" ], "author": "James Lester", "license": "ISC", "bugs": { "url": "https://github.com/loopspeed/bee-spline/issues" }, "homepage": "https://github.com/loopspeed/bee-spline#readme", "devDependencies": { "@types/jest": "^26.0.20", "jest": "^26.6.3", "prettier": "^2.2.1", "ts-jest": "^26.4.4", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.1.3" }, "files": [ "lib/**/*" ] }