-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.26 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.26 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
{
"name": "@eggjs/logger",
"version": "3.14.3",
"description": "tegg logger",
"keywords": [
"tegg",
"logger",
"typescript",
"egg"
],
"author": "popomore <sakura9515@gmail.com>",
"homepage": "https://github.com/eggjs/tegg",
"repository": {
"type": "git",
"url": "git@github.com:eggjs/tegg.git",
"directory": "core/logger"
},
"dependencies": {
"@eggjs/core-decorator": "^3.14.3",
"@eggjs/tegg-common-util": "^3.14.3",
"@eggjs/tegg-metadata": "^3.14.3",
"is-type-of": "^2.0.1"
},
"scripts": {
"test": "cross-env NODE_ENV=test NODE_OPTIONS='--no-deprecation' mocha",
"clean": "tsc -b --clean",
"tsc": "npm run clean && tsc -p ./tsconfig.json",
"tsc:pub": "npm run clean && tsc -p ./tsconfig.pub.json",
"prepublishOnly": "npm run tsc:pub"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.0.0"
},
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"bugs": {
"url": "https://github.com/eggjs/tegg/issues"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.4",
"cross-env": "^7.0.3",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}