-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"name": "@mapbox/tile-cover",
"version": "3.0.2",
"description": "generate the minimum number of tiles to cover a geojson geometry",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint *.js test/*.js --fix",
"test": "npm run lint && tape test/*.js",
"doc": "dox < index.js | doxme"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/tile-cover.git"
},
"keywords": [
"tile",
"cover",
"geojson",
"index"
],
"author": "morganherlocker",
"license": "MIT",
"bugs": {
"url": "https://github.com/mapbox/tile-cover/issues"
},
"homepage": "https://github.com/mapbox/tile-cover",
"devDependencies": {
"@turf/area": "^4.0.1",
"@turf/difference": "^4.0.1",
"@turf/intersect": "^3.0.14",
"@turf/union": "^3.0.14",
"benchmark": "^2.1.4",
"dox": "^0.9.0",
"doxme": "^1.8.2",
"eslint": "^3.19.0",
"eslint-config-mourner": "^2.0.1",
"tape": "^4.6.3"
},
"dependencies": {
"@mapbox/tilebelt": "^1.0.1"
},
"eslintConfig": {
"extends": "mourner",
"rules": {
"camelcase": 0
}
}
}