-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.01 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
{
"author": "Andreas Lind Petersen <[email protected]>",
"name": "httperrors",
"description": "Handy JavaScript Error classes representing the standard HTTP errors. Easily extensible and subclassable.",
"keywords": [
"http",
"errors",
"error",
"request",
"proxy",
"client",
"class",
"errorclass"
],
"version": "2.3.0",
"repository": {
"type": "git",
"url": "git://github.com/One-com/node-httperrors.git"
},
"main": "lib/HttpError.js",
"engines": {
"node": ">= 0.2.0"
},
"dependencies": {
"createerror": "1.3.0"
},
"devDependencies": {
"browserify": "13.0.0",
"mocha": "^5.2.0",
"uglify-js": "2.6.1",
"unexpected": "10.8.2"
},
"scripts": {
"dist": "mkdir -p dist && browserify ./lib/HttpError.js -s HttpError | ./node_modules/.bin/uglifyjs -mc > ./dist/httpErrors.js && cp dist/httpErrors.js dist/HttpError.js",
"prepublish": "npm run test && npm run dist",
"test": "mocha --recursive"
},
"files": [
"lib",
"dist"
]
}