-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.01 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
{
"name": "@17live/node-logger",
"version": "3.0.2",
"type": "module",
"description": "Centralized logger for 17LIVE NodeJS projects",
"main": "lib/index.js",
"module": "src/index.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"scripts": {
"prepare": "husky",
"build": "tsc && babel src -d lib --ignore __tests__ --extensions \".ts,.js\" && echo '{\"type\": \"commonjs\"}' > lib/package.json",
"build:watch": "yarn build --watch",
"test": "jest",
"test:watch": "yarn test --watch",
"lint": "eslint ."
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/17media/node-logger.git"
},
"keywords": [
"logger",
"slack",
"fluentd"
],
"author": "17live",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": {
"url": "https://github.com/17media/node-logger/issues"
},
"homepage": "https://github.com/17media/node-logger#readme",
"files": [
"lib",
"src",
"README.md",
"README.zh-TW.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@babel/runtime-corejs3": "^7.29.2",
"@slack/web-api": "^7.15.1"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.29.0",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.28.5",
"@eslint/eslintrc": "^3.0.0",
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"babel-jest": "^30.3.0",
"coveralls-next": "^6.0.1",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.0",
"globals": "^15.0.0",
"husky": "^9.0.0",
"jest": "^30.3.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.0.0",
"typescript": "^6.0.3"
}
}