-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 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
{
"name": "pino-test",
"version": "1.1.0",
"description": "A set of API to easily test the Pino logger",
"main": "pino-test.js",
"type": "commonjs",
"types": "pino-test.d.ts",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && node --test **/*.test.js && npm run test-types",
"test-coverage": "npm run lint && node --experimental-test-coverage --test-reporter=spec --test **/*.test.js && npm run test-types",
"test-ci": "npm run lint && node --test **/*.test.js && npm run test-types",
"test-ci-pnpm": "pnpm run lint && node --test **/*.test.js && pnpm run test-types",
"test-ci-yarn-pnp": "yarn run lint && node --test **/*.test.js",
"test-types": "tsc && tsd && ts-node test/types/pino-test.ts"
},
"precommit": "test",
"repository": {
"type": "git",
"url": "git+https://github.com/pinojs/pino-test.git"
},
"keywords": [
"pino",
"logger",
"test",
"stream"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-test/issues"
},
"homepage": "https://github.com/pinojs/pino-test#readme",
"dependencies": {
"split2": "^4.2.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^20.11.25",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"pino": "^8.19.0",
"ts-node": "^10.9.2",
"tsd": "^0.30.7",
"typescript": "^5.4.2"
},
"tsd": {
"directory": "test/types"
}
}