-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 1.05 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
{
"name": "@winkgroup/console-log",
"version": "3.0.3",
"description": "Enhanced logging class",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"playground": "npx ts-node-dev src/test.ts",
"format": "prettier --write 'src/**/*.ts'",
"prepare": "npm run build",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WINKgroup/console-log.git"
},
"keywords": [
"logging"
],
"author": "winksrl",
"license": "MIT",
"bugs": {
"url": "https://github.com/WINKgroup/console-log/issues"
},
"homepage": "https://github.com/WINKgroup/console-log#readme",
"dependencies": {
"@winkgroup/misc": "^2.0.7",
"chalk": "^4.1.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
}
}