UNPKG

1.12 kBJSONView Raw
1{
2 "name": "cli-simple-table",
3 "version": "1.0.0",
4 "description": "CLI simple table",
5 "keywords": [
6 "cli",
7 "table",
8 "simple",
9 "minimal"
10 ],
11 "files": [
12 "index.js",
13 "index.d.ts"
14 ],
15 "main": "index.js",
16 "scripts": {
17 "lint": "xo --fix",
18 "tsd": "tsd",
19 "test": "jest"
20 },
21 "husky": {
22 "hooks": {
23 "pre-commit": "lint-staged"
24 }
25 },
26 "lint-staged": {
27 "*.[tj]s": [
28 "xo",
29 "npm run tsd -- --ignore",
30 "jest --bail --findRelatedTests"
31 ]
32 },
33 "repository": {
34 "type": "git",
35 "url": "git+https://github.com/privatenumber/cli-simple-table.git"
36 },
37 "author": "Hiroki Osame <hiroki.osame@gmail.com>",
38 "license": "MIT",
39 "bugs": {
40 "url": "https://github.com/privatenumber/cli-simple-table/issues"
41 },
42 "homepage": "https://github.com/privatenumber/cli-simple-table#readme",
43 "dependencies": {
44 "chalk": "^4.1.0",
45 "cli-truncate": "^2.1.0",
46 "strip-ansi": "^6.0.0"
47 },
48 "devDependencies": {
49 "husky": "^4.2.5",
50 "jest": "^26.4.2",
51 "lint-staged": "^10.2.11",
52 "tsd": "^0.13.1",
53 "xo": "^0.33.0"
54 }
55}