forked from thi-ng/umbrella
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.76 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@thi.ng/geom",
"version": "2.1.0",
"description": "Functional, polymorphic API for 2D geometry types & SVG generation",
"module": "./index.js",
"main": "./lib/index.js",
"umd:main": "./lib/index.umd.js",
"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/thi-ng/umbrella.git"
},
"homepage": "https://github.com/thi-ng/umbrella/tree/develop/packages/geom#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/postspectacular"
},
{
"type": "patreon",
"url": "https://patreon.com/thing_umbrella"
}
],
"author": "Karsten Schmidt <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module",
"build:release": "yarn clean && yarn build:es6 && node ../../scripts/bundle-module all",
"build:es6": "tsc --declaration",
"build:test": "rimraf build && tsc -p test/tsconfig.json",
"build:check": "tsc --isolatedModules --noEmit",
"test": "mocha test",
"cover": "nyc mocha test && nyc report --reporter=lcov",
"clean": "rimraf *.js *.d.ts *.map .nyc_output build coverage doc lib api ctors internal ops",
"doc:readme": "ts-node -P ../../tools/tsconfig.json ../../tools/src/readme.ts",
"doc": "node_modules/.bin/typedoc --excludePrivate --out doc --theme ../../tools/doc/typedoc-theme src/index.ts",
"doc:ae": "mkdir -p .ae/doc .ae/temp && node_modules/.bin/api-extractor run --local --verbose",
"pub": "yarn build:release && yarn publish --access public"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@microsoft/api-extractor": "^7.12.1",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.14",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.26",
"typescript": "^4.1.5"
},
"dependencies": {
"@thi.ng/api": "^7.0.0",
"@thi.ng/arrays": "^0.10.2",
"@thi.ng/checks": "^2.9.0",
"@thi.ng/defmulti": "^1.3.5",
"@thi.ng/equiv": "^1.0.36",
"@thi.ng/errors": "^1.2.27",
"@thi.ng/geom-api": "^2.0.6",
"@thi.ng/geom-arc": "^0.3.24",
"@thi.ng/geom-clip-line": "^1.2.20",
"@thi.ng/geom-clip-poly": "^1.0.45",
"@thi.ng/geom-closest-point": "^0.5.11",
"@thi.ng/geom-hull": "^0.0.77",
"@thi.ng/geom-isec": "^0.7.9",
"@thi.ng/geom-poly-utils": "^0.3.6",
"@thi.ng/geom-resample": "^0.2.57",
"@thi.ng/geom-splines": "^0.5.44",
"@thi.ng/geom-subdiv-curve": "^0.1.75",
"@thi.ng/geom-tessellate": "^0.2.58",
"@thi.ng/hiccup": "^3.6.8",
"@thi.ng/hiccup-svg": "^3.7.6",
"@thi.ng/math": "^3.2.0",
"@thi.ng/matrices": "^0.6.44",
"@thi.ng/random": "^2.3.0",
"@thi.ng/strings": "^1.15.0",
"@thi.ng/transducers": "^7.6.0",
"@thi.ng/vectors": "^5.0.0"
},
"files": [
"*.js",
"*.d.ts",
"lib",
"api",
"ctors",
"internal",
"ops"
],
"keywords": [
"2d",
"analysis",
"arc",
"area",
"bbox",
"bezier",
"centroid",
"circle",
"clipping",
"conversion",
"datastructure",
"geometry",
"graphics",
"intersection",
"polymorphic",
"sample",
"scatter",
"shape",
"svg",
"typescript"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"thi.ng": {
"status": "beta",
"year": 2013
}
}