-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1000 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
41
{
"name": "express-better-logger",
"version": "1.0.5",
"description": "A simple logging solution",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc --watch --preserveWatchOutput",
"prePublishOnly": "tsc -b"
},
"keywords": [
"log",
"logger",
"colored",
"console"
],
"author": "@unsivilaudio",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/unsivilaudio/BetterLogger.git"
},
"bugs": {
"url": "https://github.com/unsivilaudio/BetterLogger/issues"
},
"homepage": "https://github.com/unsivilaudio/BetterLogger#readme",
"devDependencies": {
"@types/node": "^17.0.23",
"typescript": "^4.6.3"
},
"dependencies": {
"fs": "^0.0.1-security",
"path": "^0.12.7"
}
}