-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "console-table-printer",
"version": "0.0.0",
"repository": "github:ayonious/console-table-printer",
"description": "Printing pretty tables on console log",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"setup": "yarn",
"build": "tsc",
"format": "prettier --write \"**/*.{json,md,ts,tsx,yml,js,jsx}\"",
"test": "jest --config jestconfig.json",
"lint": "eslint --ext=js,ts .",
"semantic-release": "semantic-release"
},
"keywords": [
"console-table",
"console-log",
"print-table",
"node-table-printing"
],
"files": [
"dist"
],
"author": "Nahiyan Kamal",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^9.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"pretty-quick": "^4.0.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.5",
"typescript": "^5.4.5"
},
"homepage": "https://console-table.netlify.app",
"dependencies": {
"simple-wcswidth": "^1.0.1"
}
}