-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "@seek/logger",
"version": "9.0.0",
"private": false,
"description": "Standardized logging",
"homepage": "https://github.com/seek-oss/logger#readme",
"bugs": {
"url": "https://github.com/seek-oss/logger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seek-oss/logger.git"
},
"license": "MIT",
"author": {
"name": "SEEK"
},
"sideEffects": false,
"main": "./lib-commonjs/index.js",
"module": "./lib-es2015/index.js",
"types": "./lib-types/index.d.ts",
"files": [
"lib*/**/*.d.ts",
"lib*/**/*.js",
"lib*/**/*.js.map",
"lib*/**/*.json"
],
"scripts": {
"build": "skuba build-package",
"clean": "rm -fr lib",
"format": "skuba format",
"lint": "skuba lint",
"release": "yarn build && changeset publish",
"stage": "changeset version && yarn format",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"dependencies": {
"dtrim": "^1.11.0",
"fast-redact": "^3.5.0",
"pino": "^9.0.0",
"pino-std-serializers": "^7.0.0"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@changesets/get-github-info": "0.6.0",
"@types/fast-redact": "3.0.4",
"@types/split2": "4.2.3",
"skuba": "9.1.0",
"split2": "4.2.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=18.18",
"npm": ">=5.5.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"skuba": {
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "9.0.1"
}
}