diff options
| author | Priyansh <[email protected]> | 2022-01-19 04:46:26 -0500 |
|---|---|---|
| committer | Priyansh <[email protected]> | 2022-01-19 04:46:26 -0500 |
| commit | a5ff0a01d3c3924a556d84ee6653e4aa7a8e6863 (patch) | |
| tree | d6007f13506d24d6287b26082a021e1cc53ff204 /package.json | |
| parent | fbd2fa4fd9182429e54bfe96483961a98f10ac04 (diff) | |
| download | izuku.js-a5ff0a01d3c3924a556d84ee6653e4aa7a8e6863.tar.xz izuku.js-a5ff0a01d3c3924a556d84ee6653e4aa7a8e6863.zip | |
feat: add table dep, added printing test and moved display to function
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package.json b/package.json index a57b32b..87552fe 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,9 @@ "description": "In-Console Tabular Data Representation and Manipulation", "main": "dist/index.js", "types": "dist/index.d.ts", - "files": [ "dist" ], + "files": [ + "dist" + ], "scripts": { "test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'", "start:dev": "nodemon", @@ -54,5 +56,8 @@ "extends": [ "@commitlint/config-conventional" ] + }, + "dependencies": { + "table": "^6.8.0" } } |
