-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "zoya",
"version": "1.0.2",
"description": "Highly configurable logging utility",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wolfulus/zoya"
},
"author": {
"name": "João Biondo",
"email": "[email protected]",
"url": "https://wolfulus.com"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"maintainers": [
{
"name": "João Biondo",
"email": "[email protected]",
"url": "https://wolfulus.com"
}
],
"engines": {
"node": ">=8"
},
"files": [ "lib/**/*" ],
"keywords": [
"log",
"cli",
"logger",
"logging",
"hackable",
"colorful",
"console",
"signale",
"winston",
"logstash"
],
"scripts": {
"lint": "tslint --project ./tsconfig.json",
"format": "prettier --check ./{src,tests}/**/*.ts",
"preview": "yon run build && node --inspect -r ts-node/register ./src/main.ts",
"build": "tsc",
"test": "jest --coverage",
"test:report": "yon test && cat ./coverage/lcov.info | coveralls",
"pretest": "yon run lint",
"prepare": "yon run build && yon run lint"
},
"dependencies": {
"chalk": "^4.1.0",
"node-emoji": "^1.10.0",
"safe-json-stringify": "^1.2.0",
"strip-color": "^0.1.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/jest": "^27.0.1",
"@types/node": "^15.0.2",
"@types/node-emoji": "^1.8.1",
"@types/safe-json-stringify": "^1.1.1",
"@types/strip-color": "^0.1.0",
"coveralls": "^3.0.9",
"cross-env": "^7.0.2",
"jest": "^27.1.1",
"prettier": "^2.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^10.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.2",
"yarn-or-npm": "^3.0.1"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}