-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·95 lines (95 loc) · 2.52 KB
/
package.json
File metadata and controls
executable file
·95 lines (95 loc) · 2.52 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@3fv/logger-proxy",
"version": "1.0.71",
"description": "A logger proxy to enable hot swapping backends",
"main": "./lib/cjs/index.js",
"module": "./lib/mjs/index.js",
"types": "./lib/mjs/index.d.ts",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index-node.js"
},
"./appenders/FileAppender.js": {
"types": "./appenders/FileAppender.d.ts",
"import": "./lib/mjs/appenders/FileAppender.js",
"require": "./lib/cjs/appenders/FileAppender.js"
}
},
"scripts": {
"build": "node ./scripts/build.mjs",
"build:link": "yarn run build && yarn unlink;yarn link",
"build:watch": "run-s build:link && yarn run build --watch",
"test": "yarn run build && jest",
"test:watch": "yarn run build && jest --watchAll --no-cache",
"test:dev": "run-s build && run-p test:watch build:watch",
"preversion": "yarn build && yarn test",
"clean": "./scripts/clean.sh",
"postversion": "node ./scripts/release.mjs latest",
"release": "yarn build && yarn version --patch --non-interactive"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/3fv/logger-proxy.git"
},
"keywords": [
"typescript",
"logger",
"proxy"
],
"files": [
"**/*.d.ts",
"**/*.js",
"**/*.map",
"package.json"
],
"author": "Jonathan Glanz",
"license": "MIT",
"bugs": {
"url": "https://github.com/3fv/logger-proxy/issues"
},
"homepage": "https://github.com/3fv/logger-proxy#readme",
"dependencies": {
"@3fv/deferred": "^1.2.10",
"@3fv/guard": "^1",
"@3fv/prelude-ts": "^0.8.29",
"bluebird": "^3.7.2",
"chalk": "^5.3.0",
"debug": "^4.3.6",
"lodash": "^4.17.21"
},
"optionalDependencies": {
"electron": "^30"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@types/bluebird": "^3.5.42",
"@types/chalk": "^2.2.0",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/node": "^22.4.0",
"@types/shelljs": "^0.8.15",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"semver": "^7.6.3",
"shelljs": "^0.8.5",
"source-map-support": "^0.5.21",
"supports-color": "^9.4.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"zx": "^8.1.4"
},
"resolutions": {
"chalk": "^4.1.2",
"ansi-regex": "^5.0.1",
"tmpl": "^1.0.5"
}
}