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

49 lines
1.2 KiB
JSON
Raw Normal View History

2015-12-20 15:19:50 -08:00
{
"name": "bezierinfo",
2020-08-05 20:57:43 -07:00
"type": "module",
2020-08-03 18:27:33 -07:00
"version": "3.0.0",
2015-12-20 15:19:50 -08:00
"description": "pomax.github.io/bezierinfo",
2017-04-15 12:21:12 -07:00
"author": "Pomax",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://pomax.github.io/bezierinfo",
2015-12-20 15:19:50 -08:00
"repository": {
"type": "git",
"url": "git+https://github.com/Pomax/bezierinfo.git"
},
2017-04-15 12:21:12 -07:00
"bugs": {
"url": "https://github.com/Pomax/bezierinfo/issues"
},
2020-08-04 11:10:57 -07:00
"scripts": {
2020-08-08 16:35:45 -07:00
"time": "node ./mark.js",
"start": "run-s time lint build time",
2020-08-08 11:21:51 -07:00
"lint": "prettier ./tools --write",
2020-08-06 22:30:48 -07:00
"build": "node ./tools/build.js",
2020-08-05 10:52:05 -07:00
"test": "run-p server browser",
"server": "http-server -p 8000 --cors",
"browser": "open-cli http://localhost:8000"
2020-08-04 11:10:57 -07:00
},
2015-12-20 15:19:50 -08:00
"keywords": [
"Bezier",
"curves",
"tutorial",
"article",
2017-04-15 12:21:12 -07:00
"primer",
"ebook"
2015-12-20 15:19:50 -08:00
],
"devDependencies": {
2020-08-06 22:30:48 -07:00
"bezier-js": "^2.6.1",
2020-08-04 18:11:52 -07:00
"canvas": "^2.6.1",
2020-08-05 22:25:07 -07:00
"codesurgeon": "file:./lib/custom-element",
2020-08-03 18:27:33 -07:00
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
2020-08-05 22:25:07 -07:00
"http-server": "^0.12.3",
2020-08-03 18:27:33 -07:00
"marked": "^1.1.1",
2020-08-05 10:52:05 -07:00
"npm-run-all": "^4.1.5",
2020-08-03 18:27:33 -07:00
"nunjucks": "^3.2.2",
2020-08-05 10:52:05 -07:00
"open": "^7.1.0",
"open-cli": "^6.0.1",
2020-08-03 18:27:33 -07:00
"prettier": "^2.0.5",
"svgo": "^1.3.2"
2015-12-20 15:19:50 -08:00
}
}