-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 874 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
{
"name": "express-rest-error",
"version": "1.2.1",
"description": "Clean error throwing/handling for Express REST apps",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "jest",
"build": "babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ww-tech/express-rest-error.git"
},
"keywords": [
"express",
"rest",
"error",
"handling"
],
"author": "will123195",
"license": "MIT",
"bugs": {
"url": "https://github.com/ww-tech/express-rest-error/issues"
},
"homepage": "https://github.com/ww-tech/express-rest-error#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/compat-data": "^7.18.13",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"express": "^4.17.1",
"jest": "^25.1.0",
"supertest": "^4.0.2"
}
}