-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 953 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
{
"name": "@mapbox/mapbox-error",
"description": "Error middleware for express apps",
"author": "Mapbox (https://www.mapbox.com)",
"license": "ISC",
"version": "4.0.0",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"pretest": "npm run lint",
"test": "vitest --config ./vitest.config.ts --coverage run",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/mapbox/mapbox-error.git"
},
"devDependencies": {
"@mapbox/eslint-config-mapbox": "^1.2.1",
"@types/eslint": "^9.6.0",
"@types/express": "^4.17.21",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-plugin-node": "^7.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=20"
}
}