-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.29 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
{
"name": "generator-restifty-starter",
"version": "1.0.0",
"description": "A boilerplate setup for building Node.js RESTful API using Restify",
"main": "server.js",
"dependencies": {
"config": "^1.20.3",
"mongoose": "^4.4.19",
"require": "^2.4.20",
"restify": "^4.0.4",
"yeoman-generator": "^0.23.4"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"gulp": "^3.9.1",
"gulp-exec": "^2.1.2",
"gulp-jshint": "^2.0.1",
"gulp-mocha": "^2.2.0",
"gulp-nodemon": "^2.0.7",
"gulp-postmortem": "^1.0.5",
"gulp-util": "^3.0.7",
"jshint": "^2.9.2",
"jshint-stylish": "^2.2.0",
"mocha": "^2.5.3",
"restify-http-log": "0.0.1",
"shelljs": "^0.7.0",
"supertest": "^1.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kdlcruz/generator-restifty-starter.git"
},
"keywords": [
"yeoman-generator"
],
"author": "Kevin Jay Dela Cruz <[email protected]> (https://github.com/kdlcruz)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kdlcruz/generator-restifty-starter/issues"
},
"homepage": "https://github.com/kdlcruz/generator-restifty-starter#readme"
}