-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "logie",
"version": "1.0.10",
"description": "Catch, log and query runtime reports and exceptions with this library.",
"repository": "git@github.com:jerryOluranti/logie.git",
"author": "Jeremiah Faluyi <faluyijeremiah2018@gmail.com>",
"license": "MIT",
"keywords": [
"logging",
"logger",
"log",
"catch",
"async",
"error handling"
],
"scripts": {
"start": "export DEV_MODE=PRODUCTION && ts-node src/index.ts",
"start:dev": "export DEV_MODE=DEVELOPMENT && ts-node src/index.ts",
"compile": "tsc && cp index.d.ts dist/ && cp package.json dist/ && cp LICENSE dist/ && cp README.md dist/",
"test": "jest --silent src/tests/test.spec.ts"
},
"dependencies": {
"ansi-styles": "^5.0.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^17.0.23",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.7.4"
},
"logie": {
"logName": "merry",
"logPath": "applogs",
"logToFile": true,
"defaultLevel": "LOG",
"showOrigin": true,
"showStackTrace": true
}
}