generated from blazingworks/helloworld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "@blazingworks/logger-transport-prettyconsole",
"version": "1.1.0",
"description": "🔌 Pretty Console Transport for @blazingworks/logger",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": "https://github.com/blazingworks/logger-transport-prettyconsole.git",
"author": "BlazingWorks",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && tsc",
"prettier": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"prettier:ci": "prettier --check \"src/**/*.ts\"",
"lint:ci": "eslint src/**/*.ts --quiet",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"jest": "^29.1.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"dependencies": {
"@blazingworks/logger": "^1.0.1",
"@blazingworks/utils": "^1.0.0",
"colorette": "^2.0.19"
}
}