-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "@yaga/tile-utils",
"version": "1.0.0",
"description": "Utilities for tile structured data",
"main": "lib/index.js",
"scripts": {
"test": "npm run lint && npm run transpile && istanbul cover _mocha -- -- test/*.js",
"lint": "tslint ts/*.ts",
"transpile": "tsc",
"doc": "typedoc --out ./typedoc/ --exclude ts/tile-layer.directive.spec.ts --mode file ts/"
},
"directories": {
"lib": "lib",
"test": "test",
"doc": "typedoc",
"typescript": "ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yagajs/tile-utils.git"
},
"keywords": [
"tile",
"spatial",
"yaga",
"typescript"
],
"author": "Arne Schubert <atd.schubert@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yagajs/tile-utils/issues"
},
"homepage": "https://github.com/yagajs/tile-utils#readme",
"devDependencies": {
"@types/chai": "^4.0.2",
"@types/mocha": "^2.2.41",
"chai": "^4.1.1",
"istanbul": "^0.4.5",
"mocha": "^3.5.0",
"tslint": "^5.6.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2"
},
"dependencies": {
"@turf/bbox": "^4.6.0",
"@types/geojson": "^1.0.2"
}
}