-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "http-error-classes",
"version": "1.0.1",
"description": "HTTP error classes for a JS applications",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist"
],
"scripts": {
"clean-dist": "rm -rf ./dist",
"build": "npm run clean-dist && tsc",
"start": "node .",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlaanemaa/http-error-classes.git"
},
"keywords": [
"http",
"error",
"class"
],
"author": "Taavi Laanemaa <taavi.laanemaa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tlaanemaa/http-error-classes/issues"
},
"homepage": "https://github.com/tlaanemaa/http-error-classes#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"jest": "^27.1.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}