-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.32 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": "@lvksh/logger",
"description": "Zero dependency, light-weight, blazing fast customizable logging library.",
"repository": "https://github.com/lvkdotsh/logger",
"author": "lvksh",
"license": "LGPL-3.0-or-later",
"types": "./lib/index.d.ts",
"main": "./lib/index.js",
"files": [
"lib"
],
"keywords": [
"logger",
"logging",
"chalk",
"color",
"padleft"
],
"scripts": {
"build": "yarn ts && yarn ts:defs",
"ts": "tsc",
"ts:defs": "tsc --declaration --outDir lib --emitDeclarationOnly",
"debug": "yarn build && node ./test/index.js",
"pub": "yarn build && yarn publish --access public",
"test": "jest --verbose --coverage",
"lint": "eslint -c .eslintrc.json --ext .ts ./src ./tests"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^17.0.2",
"@typescript-eslint/parser": "^5.2.0",
"chalk": "4.0.0",
"eslint": "^8.4.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-lvksh": "^1.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.4.4",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {},
"version": "1.0.12"
}