-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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": "openroads-api",
"version": "0.1.0",
"description": "An API for the OpenRoads project",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "OR_DEBUG=true mocha --recursive",
"docker-start": "npm run docker-build && docker-compose up -d api",
"docker-build": "docker-compose build",
"docker-stop": "docker-compose stop",
"docker-logs": "docker-compose logs api",
"docker-test": "npm run docker-build && docker-compose run api dockerize -wait tcp://db:5432 -timeout 20s npm test; npm run docker-kill",
"docker-start-db": "docker-compose up -d db",
"docker-kill": "docker-compose down",
"gendoc": "./node_modules/.bin/apidoc -i routes",
"postinstall": "npm run gendoc"
},
"repository": {
"type": "git",
"url": "https://github.com/developmentseed/openroads-api.git"
},
"keywords": [
"OSM",
"openroads"
],
"author": "Development Seed",
"license": "BSD",
"bugs": {
"url": "https://github.com/developmentseed/openroads-api/issues"
},
"homepage": "https://github.com/developmentseed/openroads-api",
"dependencies": {
"apidoc": "^0.12.3",
"bluebird": "^2.9.24",
"boom": "^2.7.0",
"hapi": "^8.4.0",
"hapi-router": "^3.0.1",
"knex": "^0.7.6",
"libxmljs": "^0.18.0",
"lodash": "^3.6.0",
"pg": "^4.3.0",
"turf-buffer": "^1.0.4",
"turf-extent": "^1.0.4",
"turf-inside": "^1.1.4",
"turf-linestring": "^1.0.2",
"turf-point": "^2.0.1",
"turf-point-on-line": "^1.0.2",
"winston": "^0.9.0"
},
"devDependencies": {
"JSONStream": "^0.10.0",
"inject-then": "^2.0.0",
"mocha": "^2.2.1",
"should": "^5.2.0",
"split": "^0.3.3",
"through2": "^0.6.5"
}
}