forked from ukayani/restify-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 903 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
33
34
35
36
37
38
{
"name": "restify-router",
"version": "0.5.0",
"description": "A router interface for restify that lets you aggregate route definitions and apply to a restify server",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ukayani/restify-router.git"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"restify",
"router"
],
"author": "ukayani",
"license": "ISC",
"devDependencies": {
"chai": "^3.3.0",
"gulp": "^3.9.0",
"gulp-istanbul": "^0.10.0",
"gulp-jscs": "^3.0.0",
"gulp-jshint": "^1.11.2",
"gulp-jshint-html-reporter": "^0.1.3",
"gulp-mocha": "^2.1.3",
"gulp-util": "^3.0.6",
"jscs-stylish": "^0.3.1",
"jshint-stylish": "^2.0.1",
"mocha": "^2.3.3",
"sinon": "^1.17.0",
"supertest": "^1.1.0",
"restify": "^4.0.3"
},
"dependencies": {
"assert-plus": "^0.1.5"
}
}