-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 762 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 762 Bytes
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
{
"name": "restify-postGIS",
"description": "A simple mapping application for finding National Parks and Historic Sites, powered by postGIS and Leaflet maps",
"version": "0.1.0",
"private": false,
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"dependencies": {
"restify": "^4.0.3",
"config-multipaas": "0.2.2",
"pg": "^4.4.3",
"pg-query": "^0.11.0"
},
"devDependencies": {
"tap": "^5.7.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanj/restify-postGIS.git"
},
"scripts": {
"start": "node server.js",
"postinstall": "npm run initdb",
"build": "npm run initdb",
"flushdb": "node bin/flushdb.js",
"initdb": "node bin/bootstrap.js"
},
"main": "server.js"
}