-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.39 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
46
47
48
49
50
51
{
"name": "common-http-exceptions",
"version": "1.0.0",
"description": "Http Exceptions classes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"generate": "tsx generate.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kolkovsky/node-http-exceptions.git"
},
"keywords": [
"Node.js",
"Http",
"Exceptions"
],
"author": "Stanislau Kalkouski",
"license": "MIT",
"bugs": {
"url": "https://github.com/kolkovsky/node-http-exceptions/issues"
},
"homepage": "https://github.com/kolkovsky/node-http-exceptions#readme",
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"dotenv": "^16.4.5",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "13.5.2",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-standard": "4.0.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"tsx": "4.19.1"
},
"files": [
"dist"
]
}