-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "@kylebarron/snap-to-tin",
"version": "0.2.1",
"description": "Snap vector features to the faces of a triangulated irregular network (TIN).",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc --declaration && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kylebarron/snap-to-tin.git"
},
"keywords": [
"terrain-tiles",
"terrain",
"terrain-mesh",
"vector-tiles",
"triangular-mesh"
],
"files": [
"src/",
"dist/",
"lib/"
],
"author": "Kyle Barron (https://kylebarron.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kylebarron/snap-to-tin/issues"
},
"homepage": "https://github.com/kylebarron/snap-to-tin#readme",
"dependencies": {
"@types/flatbush": "^3.1.0",
"flatbush": "^3.2.0",
"lineclip": "^1.1.5",
"lodash.orderby": "^4.6.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.4",
"jest": "^25.1.0",
"rollup": "^2.0.2",
"rollup-plugin-terser": "^5.2.0",
"typescript": "^4.6.2"
}
}