-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "tile-setter",
"version": "0.1.12",
"description": "Tiled vector map powered by a lightweight WebGL renderer",
"main": "dist/tile-setter.js",
"directories": {},
"files": [
"dist"
],
"scripts": {
"lint": "eslint src",
"build": "npm run build-module && npm run build-examples",
"build-module": "rollup -c build/rollup.config.js",
"build-examples": "cd examples && rollup -c",
"test": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobeletJS/tile-setter.git"
},
"keywords": [
"tiled",
"vector",
"map",
"interactive"
],
"author": "Jeshurun Hembd",
"license": "MIT",
"bugs": {
"url": "https://github.com/GlobeletJS/tile-setter/issues"
},
"homepage": "https://github.com/GlobeletJS/tile-setter#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@turf/boolean-point-in-polygon": "^6.0.1",
"d3": "^6.2.0",
"eslint": "^8.12.0",
"eslint-config-globeletjs": "^0.0.6",
"rollup": "^2.70.1",
"yawgl": "^0.4.2"
},
"dependencies": {
"chunked-queue": "^0.1.4",
"d3-tile": "github:GlobeletJS/d3-tile",
"tile-batch": "^0.0.3",
"tile-rack": "^1.0.4",
"tile-stencil": "^0.4.12",
"tile-worker": "^0.1.8"
}
}