-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
43 lines (43 loc) · 1.12 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "hyperbolic-canvas",
"version": "1.0.1",
"description": "The Poincaré disk model of the hyperbolic plane on the HTML canvas.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"test": "yarn compile && firefox jasmine/SpecRunner.html",
"compile": "rm -rf dist/ && mkdir dist/ && browserify index.js > dist/hyperbolic_canvas.js && prettier --write dist/",
"prepare": "husky",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsnickbarry/hyperbolic-canvas.git"
},
"keywords": [
"hyperbolic",
"geometry",
"canvas",
"wow",
"visualization",
"non-euclidean",
"poincare",
"math",
"maths"
],
"author": "Nick Barry",
"license": "MIT",
"bugs": {
"url": "https://github.com/itsnickbarry/hyperbolic-canvas/issues"
},
"homepage": "https://github.com/itsnickbarry/hyperbolic-canvas#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"browserify": "^17.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2"
}
}