-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 852 Bytes
/
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
{
"name": "logflake",
"version": "2.0.5",
"description": "Better console messages for NodeJS",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/felippe-regazio/logflake"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"dev": "tsc --watch",
"build": "rm -rf ./dist && tsc",
"test": "rm -rf ./test/logs/*.log && jest --collectCoverage ./test"
},
"author": "Felippe Regazio",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@types/node": "^16.0.1",
"jest": "^27.0.6",
"typescript": "^4.3.5"
},
"dependencies": {
"@slack/webhook": "^6.0.0",
"chalk": "^4.1.1",
"md5": "^2.3.0"
},
"keywords": [
"log",
"logger",
"track",
"output",
"console",
"transport"
]
}