-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "express-errorhandlers",
"version": "1.1.3",
"description": "Error handler for expressjs",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"start": "npm run start:ts",
"start:ts": "EXPRESS_ERRROHANDLERS_LISTEN=1 node --inspect -r ts-node/register ./demo.ts",
"start:js": "EXPRESS_ERRROHANDLERS_LISTEN=1 node ./demo.js",
"build:pre": "npm run format && npm run tslint && npm run test && npm run build",
"build": "tsc",
"postbuild": "copyfiles -u 1 src/views/**/*.pug dist/",
"test": "jest --config jest.config.js",
"format": "npm run format:prettier",
"format:prettier": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.test.ts\"",
"lint": "npm run lint:md && npm run lint:ts",
"lint:md": "remark .",
"lint:ts": "eslint \"{src,__tests__}/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"{src,__tests__}/**/*.{ts,tsx}\"",
"prepare": "npm run build",
"coverage": "jest --coverage --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cam-inc/express-errorhandlers.git"
},
"keywords": [
"expressjs",
"express-middleware",
"errorhanders",
"typescript"
],
"author": "CAM, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/cam-inc/express-errorhandlers/issues"
},
"homepage": "https://github.com/cam-inc/express-errorhandlers#readme",
"devDependencies": {
"@types/accepts": "^1.3.5",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.2",
"@types/jest": "^24.0.22",
"@types/morgan": "^1.7.37",
"@types/node": "^12.12.9",
"@types/pug": "^2.0.4",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"body-parser": "^1.18.2",
"copyfiles": "^2.1.1",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-prettier": "^3.1.1",
"express": "^4.17.1",
"jest": "^27.0.4",
"morgan": "^1.9.1",
"nodemon": "^2.0.3",
"prettier": "^1.19.1",
"remark-cli": "^9.0.0",
"remark-lint": "^8.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"supertest": "^4.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^8.5.0",
"typescript": "^3.7.2"
},
"dependencies": {
"accepts": "^1.3.7",
"debug": "^4.1.1",
"pug": "^3.0.1"
},
"engines": {
"node": ">=8.0.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}