-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 881 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
36
37
38
39
40
{
"name": "http-status-typed",
"version": "2.0.1",
"description": "HTTP status codes, but in a typescript enum so you have a parent type",
"main": "lib/index.min.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"/lib/**/*.min.js",
"/lib/**/*.d.ts"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"compress": "terser lib/index.js --compress --output lib/index.min.js",
"publish": "npm run build && npm run compress"
},
"keywords": [
"node",
"http",
"apache",
"HttpStatus",
"httpclient",
"status",
"codes",
"enum",
"typescript",
"react",
"next"
],
"author": "Shahaed Hasan",
"license": "MIT",
"devDependencies": {
"terser": "^5.34.1",
"typescript": "^5.4.5"
},
"repository": {
"type": "git",
"url": "https://github.com/Shahaed/http-status-typed.git"
}
}