-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "universal-bunyan",
"version": "0.9.2",
"description": "An universal JSON logging library based on bunyan with easy leveling feature",
"main": "lib/index.js",
"files": [
"lib"
],
"repository": "https://github.com/weseek/universal-bunyan.git",
"author": "Yuki Takei <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"dependencies": {
"bunyan-format": "^0.2.1",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@browser-bunyan/console-formatted-stream": "^1.6.2",
"@types/bunyan": "^1.8.6",
"@types/bunyan-format": "^0.2.3",
"@types/minimatch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"browser-bunyan": "^1.6.3",
"bunyan": "^1.8.15",
"eslint": "^7.20.0",
"eslint-config-weseek": "^1.0.8",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"typescript": "^4.1.5"
},
"peerDependencies": {
"@browser-bunyan/console-formatted-stream": "^1.6.2",
"browser-bunyan": "^1.6.3",
"bunyan": "^1.8.15"
}
}