forked from ryanj/restify-mongodb-parks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 788 Bytes
/
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
{
"name": "restify-mongodb-parks",
"description": "A simple mapping application for finding US National Parks and Historic Sites, powered by MongoDB and Leaflet maps",
"version": "0.1.0",
"private": false,
"license": "MIT",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
},
"dependencies": {
"config-multipaas": "^0.2.1",
"leaflet": "^0.7.7",
"mongojs": "^2.3.0",
"restify": "^4.0.3"
},
"devDependencies": {
"request": "2.72.0",
"tap": "^5.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/snuf/restify-mongodb-parks.git"
},
"scripts": {
"start": "node server.js",
"build": "npm run initdb",
"flushdb": "node bin/flushdb.js",
"initdb": "node bin/bootstrap.js"
},
"main": "server.js"
}