forked from blacha/node-restify-barebones
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 732 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 732 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
32
{
"author": "Aviarc",
"name": "sample",
"description": "Sample application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git@github.com:blacha/node-restify-barebones.git"
},
"dependencies": {
"moment": "~2.5.1",
"mongojs": "~0.10.0",
"request": "~2.34.0",
"bunyan": "~0.22.1",
"restify": "~2.6.1"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.6.3",
"grunt-jasmine-node": "~0.1.0",
"grunt-apidoc": "~0.3.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-nodemon": "~0.2.0",
"grunt-cli": "~0.1.13"
},
"engine": "node",
"scripts": {
"test": "grunt test",
"start": "grunt start",
"build": "grunt build"
}
}