-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "macrocosm",
"version": "0.2.0",
"description": "The OSM API as a platform in NodeJS",
"main": "index.js",
"engines": {
"node": "^5.0.0"
},
"scripts": {
"start": "node index.js",
"test": "MACROCOSM_DEBUG=true mocha --recursive",
"docker-start": "docker-compose up -d api && docker-compose build",
"docker-stop": "docker-compose stop",
"docker-logs": "docker-compose logs api",
"docker-test": "docker-compose build && docker-compose run api npm test; docker-compose stop && docker-compose rm -f",
"docker-start-db": "docker-compose up -d postgres",
"docker-kill-db": "docker-compose stop && docker-compose rm -f",
"gendoc": "./node_modules/.bin/apidoc -i routes",
"postinstall": "npm run gendoc"
},
"repository": {
"type": "git",
"url": "https://github.com/developmentseed/macrocosm.git"
},
"keywords": [
"OSM"
],
"author": "Development Seed",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/developmentseed/macrocosm/issues"
},
"homepage": "https://github.com/developmentseed/macrocosm",
"dependencies": {
"apidoc": "^0.12.3",
"boom": "^2.7.0",
"debug": "^2.2.0",
"hapi": "^8.4.0",
"hapi-router": "^3.0.1",
"knex": "^0.7.6",
"libxmljs": "^0.14.0",
"lodash": "^3.6.0",
"pg": "^4.3.0",
"winston": "^0.9.0",
"xml2json": "^0.9.0",
"xmlbuilder": "^4.2.0"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"eslint": "^1.10.3",
"inject-then": "^2.0.0",
"mocha": "^2.2.1",
"should": "^5.2.0",
"split": "^0.3.3"
}
}