This repository was archived by the owner on May 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.27 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.27 KB
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
{
"name": "@xpbytes/express-async-handler",
"version": "3.0.0",
"description": "Utility function to use async functions as express handlers",
"main": "dist/asyncHandler.js",
"module": "dist/asyncHandler.js",
"repository": "https://github.com/XPBytes/express-async-handler",
"author": "Derk-Jan Karrenbeld <derk-jan@xpbytes.com>",
"license": "MIT",
"files": [
"README.md",
"LICENSE",
"/dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prebuild:test": "rimraf tests/dist",
"build:test": "tsc --project tests/tsconfig.json",
"lint": "eslint .",
"pretest": "yarn build:test",
"test": "tape tests/dist/**/*.test.js",
"prepublish": "yarn test && yarn lint && yarn build"
},
"peerDependencies": {
"@types/express": "^4.17.8"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/node": "^15.6.0",
"@types/supertest": "^2.0.11",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^7.2.0",
"express": "^4.17.1",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"tape": "^5.2.2",
"typescript": "^4.2.4"
},
"dependencies": {}
}