-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "http-errors-express",
"version": "3.1.0",
"description": "Express middleware for handling errors created with the http-errors package.",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run lint",
"build": "babel ./src --out-dir ./lib --copy-files",
"lint": "eslint src/ test/",
"prepublish": "npm run build",
"preversion": "npm test",
"test": "babel-tape-runner test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/blockai/http-errors-express.git"
},
"homepage": "https://github.com/blockai/http-errors-express",
"keywords": [
"rest",
"express",
"errors",
"middleware"
],
"bugs": {
"url": "https://github.com/blockai/http-errors-express/issues"
},
"author": "Olivier Lalonde <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.6.0",
"babel-tape-runner": "^2.0.1",
"blue-tape": "^0.2.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"express": "^4.13.4",
"http-errors": "^1.4.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0"
}
}