1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-02-21 08:02:28 +01:00
BezierInfo-2/package.json
2020-08-20 12:49:26 -07:00

53 lines
1.5 KiB
JSON

{
"name": "bezierinfo",
"type": "module",
"version": "3.0.0",
"description": "pomax.github.io/bezierinfo",
"author": "Pomax",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://pomax.github.io/bezierinfo",
"repository": {
"type": "git",
"url": "git+https://github.com/Pomax/BezierInfo-2.git"
},
"bugs": {
"url": "https://github.com/Pomax/BezierInfo-2/issues"
},
"scripts": {
"start": "cls && run-s clean time lint:* build time && rm -f .timing",
"test": "run-s start && run-p watch server browser",
"---": "---",
"browser": "open-cli http://localhost:8000",
"build": "node ./src/build.js",
"clean": "rm -f .timing && rm -rf ./src/build/temp",
"lint:tools": "prettier ./src/**/*.js --write",
"lint:lib": "prettier ./public/js/**/*.js --write",
"server": "cd public && http-server -p 8000 --cors",
"watch": "run-p watch:*",
"watch:markdown": "chokidar \"./chapters/**/*.md\" -c \"npm start\"",
"watch:sketches": "chokidar \"./chapters/**/*.js\" -c \"npm start\"",
"time": "node ./src/mark.js"
},
"keywords": [
"Bezier",
"curves",
"tutorial",
"article",
"primer",
"ebook"
],
"devDependencies": {
"canvas": "^2.6.1",
"chokidar-cli": "^2.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"http-server": "^0.12.3",
"marked": "^1.1.1",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.2",
"open-cli": "^6.0.1",
"prettier": "^2.0.5",
"svgo": "^1.3.2"
}
}