-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 KB
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
{
"name": "pino-caller",
"version": "4.0.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 <greensoncio@gmail.com>",
"license": "MIT",
"watch": {
"test-watch": {
"patterns": [
"."
],
"extensions": [
"js",
"ts"
]
}
},
"devDependencies": {
"@types/pino": "^7.0.4",
"@types/through2": "^2.0.41",
"c8": "^10.1.3",
"eslint": "^9.37.0",
"neostandard": "^0.12.2",
"npm-watch": "^0.11.0",
"pino": "^10.0.0",
"pino-debug": "^4.0.1",
"through2": "^4.0.2",
"ts-node": "^10.2.1",
"tsd": "^0.33.0",
"typescript": "~6.0.2"
},
"engines": {
"node": ">6.0.0"
},
"scripts": {
"lint-fix": "eslint --fix index.js examples/*js tests/*.js",
"pretest": "npm run lint-fix",
"test": "eslint && c8 node --test ./tests/test.js && npm run test-ts && npm run test-types",
"test-ts": "ts-node tests/test-ts.ts",
"test:ci": "npm run pretest && node -r \"source-map-support/register\" tests/*.js tests/*.ts && 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"
]
}
}