-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "@benvgroup/logger",
"version": "0.1.8",
"description": "Simple @google-cloud/logging wrapper using winston",
"main": "lib/logger",
"repository": "[email protected]:benvgroup/logger.git",
"author": "Adilson Carvalho <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "babel lib --out-dir dist/lib --ignore dist,node_modules",
"postbuild": "cp package.json dist",
"dummy": "yarn build && node dummy",
"lint": "eslint **/*.js --ignore-pattern node_modules/",
"test": "jest"
},
"keywords": [
"benv",
"benv group",
"cloud",
"google api",
"google apis",
"google cloud platform",
"google cloud",
"google logging",
"google",
"logger",
"logging",
"loglevel",
"logs",
"stackdriver logging",
"stackdriver",
"sysadmin",
"tools",
"winston transport",
"winston"
],
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.14.8",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.14.8",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "27.0.6",
"babel-preset-minify": "0.5.1",
"eslint": "7.31.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-jest": "24.3.7",
"jest": "27.0.6"
},
"dependencies": {
"colors": "1.4.0",
"fast-safe-stringify": "2.0.8",
"triple-beam": "1.3.0",
"winston": "3.3.3"
}
}