forked from jyotiska/prettytable
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.32 KB
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
51
{
"name": "prettytable.js",
"version": "1.0.1",
"main": "out/index.js",
"types": "out/index.d.ts",
"description": "Browser/Node module for generating pretty tables from multiple data sources",
"repository": "https://github.com/mrrefactoring/prettytable.js",
"author": "Vladislav Tupikin <mrrefactoring@yandex.ru>",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build && npm run lint && npm run test:unit",
"build": "tsc",
"test:unit": "ava tests/unit",
"test:unit:coverage": "c8 ava tests/unit",
"lint": "eslint ./src --ext .ts",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"pretty",
"prettytable",
"table",
"csv",
"json"
],
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"devDependencies": {
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"ava": "^4.3.1",
"c8": "^7.12.0",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-import": "^2.26.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"csv-parse": "^5.3.0",
"csv-stringify": "^6.2.0"
}
}