-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·84 lines (84 loc) · 2.89 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
79
80
81
82
83
84
{
"name": "@ptkdev/logger",
"description": "Beautiful Logger for Node.js: the best alternative to the console.log statement",
"version": "1.8.0",
"main": "modules/logger.js",
"author": "Patryk Rzucidło [@ptkdev] <[email protected]> (https://ptk.dev)",
"license": "MIT",
"license-docs": "CC BY 4.0",
"license-translations": "CC BY 4.0",
"license-images": "CC BY-NC 4.0",
"homepage": "https://logger.ptkdev.io",
"docs": "https://docs.logger.ptkdev.io",
"repository": {
"type": "git",
"url": "https://github.com/ptkdev/ptkdev-logger.git"
},
"bugs": {
"url": "https://github.com/ptkdev/ptkdev-logger/issues"
},
"scripts": {
"example": "cd examples && node examples/example.js",
"clean": "rm -rf node_modules package-lock.json && npm install",
"update": "rm -f package-lock.json && npm update",
"lint": "eslint ./ --cache --ignore-pattern .gitignore",
"lint-fix": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"git-set-upstream": "git remote add upstream [email protected]:ptkdev/ptkdev-logger.git && git fetch upstream",
"git-pull-upstream": "git pull upstream master && git pull upstream beta && git pull upstream nightly",
"git-pull": "git pull --recursive",
"git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"",
"npm-publish-master": "git checkout master && npm publish",
"npm-publish-beta": "git checkout beta && npm publish --tag beta",
"npm-publish-nightly": "git checkout nightly && npm publish --tag nightly",
"docs": "git submodule update --recursive && markserv ./README.md",
"test": "jest",
"contributors-generate": "all-contributors generate",
"pkg-upgrade": "npx npm-check-updates -u && npm install && husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run contributors-generate"
}
},
"keywords": [
"ptkdev",
"logger",
"log",
"logging",
"console.log",
"pinojs",
"pino-logger",
"pino",
"typescript"
],
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"rotating-file-stream": "^2.1.5",
"chalk": "^4.1.2",
"lowdb": "^1.0.0",
"fs-extra": "^10.0.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"@ptkdev/all-shields-cli": "^2.0.2",
"eslint": "^7.32.0",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-jest": "^24.4.0",
"all-contributors-cli": "^6.20.0",
"pm2": "^5.1.1",
"json": "^11.0.0",
"jest": "^27.1.0",
"husky": "^7.0.2",
"yargs": "^17.1.1",
"markserv": "^1.17.4"
},
"contributors": [
"Ilua Chubarov [@Ilya] <[email protected]> (https://github.com/agoalofalife)",
"Bruno Kummel [@Bruck1701] <[email protected]> (https://github.com/Bruck1701)",
"Alina Osv [@alinaosv] <[email protected]> (https://github.com/alinaosv)",
"Sylvain Téchené [@syltech] <[email protected]> (https://github.com/Syltech)",
"Giovanni Cardamone [@GiovanniCardamone] <[email protected]> (https://github.com/GiovanniCardamone)"
]
}