-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
60 lines (60 loc) · 1.58 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
{
"name": "pino-caller",
"version": "3.4.0",
"description": "print the filename and line number of the caller (use only in development environment)",
"main": "index.js",
"types": "index.d.ts",
"repository": "https://github.com/pinojs/pino-caller.git",
"author": "phra <[email protected]>",
"license": "MIT",
"watch": {
"test-watch": {
"patterns": [
"."
],
"extensions": [
"js",
"ts"
]
}
},
"devDependencies": {
"@types/pino": "^6.3.11",
"@types/tap": "^15.0.5",
"@types/through2": "^2.0.36",
"npm-watch": "^0.11.0",
"pino": "^6.11.3",
"pino-debug": "^2.0.0",
"standard": "^8.6.0",
"tap": "^12.0.1",
"through2": "^4.0.2",
"tsd": "^0.28.0",
"ts-node": "^10.2.1",
"typescript": "~5.0.2"
},
"peerDependencies": {
"pino": "*"
},
"engines": {
"node": ">6.0.0"
},
"scripts": {
"lint-fix": "standard --fix index.js examples/*js tests/*.js",
"pretest": "npm run lint-fix",
"test": "tap tests/*.js && npm run test-ts && npm run test-types",
"test-ts": "ts-node tests/test-ts.ts",
"test-watch": "tap tests/*.js tests/*.ts",
"test:ci": "npm run pretest && tap --node-arg=\"-r\" --node-arg=\"source-map-support/register\" tests/*.js tests/*.ts --coverage-report=lcovonly && npm run test-types",
"test-types": "tsc && tsd",
"example": "env NODE_ENV=development node examples/index.js",
"watch": "npm-watch"
},
"dependencies": {
"source-map-support": "^0.5.13"
},
"standard": {
"ignore": [
"examples/module-ts.js"
]
}
}