-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "ts-http-status-utils",
"version": "1.1.0",
"description": "HTTP status code declarations, descriptions and utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/thejfreitas/ts-http-status-utils#ts-http-status-utils-hammer_and_wrench-computer-toolbox",
"bugs": "https://github.com/thejfreitas/ts-http-status-utils/issues",
"repository": "[email protected]:thejfreitas/ts-http-status-utils.git",
"author": "J. de Freitas",
"license": "MIT",
"keywords": [
"typescript",
"http",
"status",
"http-status",
"http-status-code",
"http-utils",
"http-error",
"http-error-message"
],
"scripts": {
"build": "yarn clean && tsc --emitDeclarationOnly --declaration --project tsconfig.json",
"clean": "rimraf dist",
"test": "jest",
"watch": "tsc --watch"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}