-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "meta2-logger",
"version": "2.1.1",
"description": "Simple logging library for NodeJS with TypeScript support and multiple targets including GrayLog.",
"main": "dist/src/index.js",
"typings": "dist/src/index",
"scripts": {
"build": "rm -rf ./dist; tsc",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}' '__tests__/**/*.{ts,tsx}'",
"test": "jest",
"pretest": "npm run lint; npm run build",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/metaplatform/meta2-logger.git"
},
"keywords": [
"log",
"logging",
"logger",
"facility",
"graylog",
"gelf"
],
"author": "Jiri Hybek <[email protected]> (http://jiri.hybek.cz/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/metaplatform/meta2-logger/issues"
},
"homepage": "https://github.com/metaplatform/meta2-logger",
"dependencies": {
"colors": "1.4.0",
"gelf": "2.0.1"
},
"devDependencies": {
"@types/jest": "25.2.3",
"@types/node": "14.0.5",
"jest": "26.0.1",
"test-console": "1.1.0",
"tslint": "5.8.0",
"typescript": "3.9.3"
}
}