-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.07 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": "restify-errors-thrower",
"version": "2.0.0",
"description": "Throw Restify errors easily and consistently!",
"main": "index.js",
"dependencies": {
"restify-errors": "^4.3.0"
},
"devDependencies": {
"ava": "*",
"codecov": "^2.2.0",
"nyc": "^11.0.3",
"xo": "*"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava",
"coverage": "nyc npm test && nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonepri/restify-errors-thrower.git"
},
"author": {
"name": "Simone Primarosa",
"email": "[email protected]"
},
"keywords": [
"restify-errors-thrower",
"restify-errors",
"restify",
"errors",
"custom errors",
"inherit errors",
"http errors",
"http status code",
"rest errors",
"throw errors"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/simonepri/restify-errors-thrower/issues"
},
"homepage": "https://github.com/simonepri/restify-errors-thrower#readme"
}