-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "@mapbox/cardboard",
"version": "3.0.4",
"description": "A library for storing and searching geographic features",
"main": "index.js",
"scripts": {
"pretest": "eslint index.js lib test/*.js",
"test": "nyc tape test/*.test.js",
"coverage": "nyc --reporter html tape test/*.test.js && opener ./coverage/index.html",
"docs": "documentation -f md --github > api.md"
},
"bin": {
"cardboard": "./bin/cardboard.js"
},
"repository": {
"type": "git",
"url": "git://github.com/mapbox/cardboard.git"
},
"keywords": [
"geographic",
"index",
"spatial"
],
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/cardboard/issues"
},
"homepage": "https://github.com/mapbox/cardboard",
"dependencies": {
"aws-sdk": "2.x",
"buffer-from": "^0.1.1",
"cuid": "1.2.4",
"dyno": "^1.4.0",
"geobuf": "^3.0.0",
"geojson-extent": "^0.1.0",
"geojson-normalize": "0.0.0",
"lodash": "~2.4.1",
"minimist": "0.0.9",
"pbf": "^3.0.4",
"queue-async": "~1.0.7",
"sphericalmercator": "^1.0.3",
"through2": "^2.0.0",
"tilebelt": "^0.5.2"
},
"devDependencies": {
"coveralls": "^2.11.2",
"documentation": "^3.0.0",
"dynalite": "^1.0.2",
"dynamodb-test": "^0.2.1",
"eslint": "^1.4.3",
"geojson-fixtures": "0.1.0",
"geojson-random": "^0.2.2",
"geojson-stream": "0.0.0",
"mock-aws-s3": "^0.2.1",
"nyc": "^6.4.4",
"tape": "^4.6.3"
}
}