UNPKG

1.18 kBJSONView Raw
1{
2 "name": "cli-simple-table",
3 "version": "1.1.1",
4 "description": "CLI simple table",
5 "keywords": [
6 "cli",
7 "table",
8 "simple",
9 "minimal"
10 ],
11 "license": "MIT",
12 "repository": "privatenumber/cli-simple-table",
13 "funding": "https://github.com/privatenumber/cli-simple-table?sponsor=1",
14 "author": {
15 "name": "Hiroki Osame",
16 "email": "hiroki.osame@gmail.com"
17 },
18 "type": "module",
19 "files": [
20 "dist"
21 ],
22 "exports": {
23 "import": "./dist/index.js",
24 "require": "./dist/index.cjs"
25 },
26 "types": "./dist/index.d.ts",
27 "scripts": {
28 "build": "tsup src --dts --format esm,cjs",
29 "lint": "eslint .",
30 "pretest": "npm run build",
31 "test": "uvu &:"
32 },
33 "husky": {
34 "hooks": {
35 "pre-commit": "lint-staged"
36 }
37 },
38 "lint-staged": {
39 "*.[tj]s": [
40 "eslint",
41 "npm run test"
42 ]
43 },
44 "dependencies": {
45 "cli-truncate": "^2.1.0",
46 "colorette": "^2.0.7",
47 "strip-ansi": "^6.0.0"
48 },
49 "devDependencies": {
50 "@pvtnbr/eslint-config": "^0.2.0",
51 "@types/node": "^16.9.6",
52 "eslint": "^7.32.0",
53 "husky": "^4.3.0",
54 "lint-staged": "^11.1.2",
55 "tsup": "^5.1.0",
56 "typescript": "^4.4.3",
57 "uvu": "^0.5.1"
58 },
59 "eslintConfig": {
60 "extends": "@pvtnbr"
61 }
62}