forked from developmentseed/landsat-api
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.71 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
60
61
62
63
64
65
66
67
68
69
{
"name": "landsat-api",
"version": "1.1.0",
"description": "An API for USGS Landsat8 imagery metadata",
"main": "index.js",
"scripts": {
"serve": "node index.js",
"test": "./node_modules/mocha/bin/mocha test && npm run docs",
"docs": "./node_modules/apidoc/bin/apidoc -i app/ -o docs_tmp/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/developmentseed/landsat-api.git"
},
"keywords": [
"landsat",
"api",
"elasticsearch"
],
"author": "Development Seed",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/developmentseed/landsat-api/issues"
},
"homepage": "https://github.com/developmentseed/landsat-api#readme",
"dependencies": {
"async": "^1.4.0",
"boolify-string": "^2.0.1",
"boom": "^2.7.2",
"catbox-redis": "^1.0.5",
"csv": "^0.4.2",
"elastic.js": "^1.2.0",
"elasticsearch": "^8.2.0",
"envloader": "0.0.2",
"geojson-validation": "^0.1.5",
"good": "^6.3.0",
"good-console": "^5.0.2",
"hapi": "^9.3.0",
"hapi-mongodb": "~3.1.0",
"hapi-paginate": "^0.2.0",
"hapi-response-meta": "^0.2.0",
"hapi-router": "^3.3.0",
"landsat-meta-updater": "^0.5.1",
"lodash": "^3.9.3",
"moment": "^2.10.6",
"mongodb": "^2.0.42",
"monquery": "^0.2.0",
"nock": "^2.9.1",
"redis-url": "^1.2.1",
"request": "^2.57.0",
"tmp": "0.0.27",
"turf-area": "^1.1.1",
"turf-extent": "^1.0.4",
"validator": "^4.0.5"
},
"devDependencies": {
"apidoc": "^0.13.1",
"chai": "^3.2.0",
"fs-extra": "^0.22.1",
"mocha": "^2.2.5"
},
"apidoc": {
"title": "landsat-api",
"header": {
"title": "Installation",
"filename": "README.md"
}
}
}