-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pino-http-send",
"version": "0.4.2",
"description": "",
"keywords": [
"pino",
"logging",
"transport",
"http"
],
"homepage": "https://github.com/technicallyjosh/pino-http-send#readme",
"bugs": {
"url": "https://github.com/technicallyjosh/pino-http-send/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/technicallyjosh/pino-http-send.git"
},
"license": "ISC",
"author": {
"name": "Josh Newman",
"url": "https://technicallyjosh.com"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"pino-http-send": "./dist/bin.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc",
"dev": "npm run build && tsc --watch",
"lint": "eslint --ext ts ./src",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,json,css,md}": "prettier --write",
"*.{ts,js}": "eslint --cache --fix",
"package.json": "npx sort-package-json"
},
"dependencies": {
"chalk": "^4.1.0",
"got": "^11.5.2",
"pump": "^3.0.0",
"pumpify": "^2.0.1",
"split2": "^3.2.2",
"through2": "^4.0.2",
"typescript": "^4.0.2",
"yargs": "^15.4.1"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/lodash.debounce": "^4.0.6",
"@types/pino": "^6.3.0",
"@types/pump": "^1.1.0",
"@types/pumpify": "^1.4.1",
"@types/split2": "^2.1.6",
"@types/through2": "^2.0.36",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.13",
"nock": "^13.0.4",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0"
}
}