-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
39 lines (39 loc) · 937 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
39
{
"name": "restify-router",
"version": "0.6.2",
"description": "A router interface for restify that lets you aggregate route definitions and apply to a restify server",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ukayani/restify-router.git"
},
"scripts": {
"test": "c8 mocha && c8 check-coverage --lines 95",
"clean": "rm -rf coverage",
"lint": "eslint 'lib/*.js'",
"fix": "eslint --fix 'lib/*.js'"
},
"keywords": [
"restify",
"router"
],
"author": "ukayani",
"license": "ISC",
"devDependencies": {
"@types/restify": "^7.2.12",
"eslint": "^6.0.0",
"chai": "^3.3.0",
"c8": "^7.2.0",
"mocha": "^5.2.0",
"restify": "^4.0.3",
"sinon": "^1.17.0",
"supertest": "^3.3.0"
},
"dependencies": {
"assert-plus": "^0.1.5"
},
"types": "./types/restify-router/index.d.ts"
}