-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.25 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "http-response-status",
"version": "1.1.3",
"description": "HTTP Status Map",
"main": "dist/index.js",
"module": "dist/http-response-status.esm.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/arnaud-zg/http-response-status.git"
},
"homepage": "https://github.com/arnaud-zg/http-response-status",
"bugs": {
"url": "https://github.com/arnaud-zg/http-response-status/issues"
},
"files": [
"dist"
],
"keywords": [
"http",
"typescript",
"code",
"response",
"status"
],
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint src test",
"start": "tsdx watch",
"test:coverage:report": "npm run test:coverage && codecov -f coverage/*.json",
"test:coverage": "tsdx test --coverage",
"test": "tsdx test"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint src test"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "27.5.2",
"codecov": "3.8.3",
"husky": "8.0.3",
"tsdx": "0.14.1",
"tslib": "2.5.2",
"typescript": "4.9.5"
}
}