-
-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.09 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "csv-to-markdown-table",
"description": "JavaScript/Node.js Csv to Markdown Table Converter",
"type": "module",
"main": "./lib/CsvToMarkdown.cjs",
"module": "./lib/CsvToMarkdown.mjs",
"unpkg": "./lib/CsvToMarkdown.min.js",
"exports": {
".": {
"import": {
"types": "./lib/CsvToMarkdown.d.ts",
"default": "./lib/CsvToMarkdown.mjs"
},
"require": {
"types": "./lib/CsvToMarkdown.d.cts",
"default": "./lib/CsvToMarkdown.cjs"
},
"default": "./lib/CsvToMarkdown.mjs"
}
},
"bin": {
"csv-to-markdown-table": "bin/csv-to-markdown-table"
},
"version": "2.0.0",
"types": "./lib/CsvToMarkdown.d.ts",
"scripts": {
"test": "npm run build:all && node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "oxfmt --ignore-path .oxfmtignore --write src test",
"format:check": "oxfmt --ignore-path .oxfmtignore --check src test",
"lint": "oxlint src test",
"cover": "npm test -- --coverage",
"clean": "rm -rf lib && rm -rf coverage",
"build": "rollup -c rollup.config.mjs",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir lib",
"build:all": "npm run build && npm run build:types",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donatj/CsvToMarkdownTable.git"
},
"keywords": [
"csv",
"markdown",
"github"
],
"author": {
"name": "Jesse G. Donat",
"email": "donatj@gmail.com",
"url": "https://donatstudios.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/donatj/CsvToMarkdownTable/issues"
},
"homepage": "https://donatstudios.com/CsvToMarkdownTable",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/jest": "^30.0.0",
"jest": "^30.5.1",
"jest-environment-node": "^30.2.0",
"oxfmt": "^0.63.0",
"oxlint": "^1.78.0",
"rollup": "^4.63.1",
"ts-jest": "^29.4.12",
"tslib": "^2.8.1",
"typescript": "^6.0.3"
},
"dependencies": {
"csv-walker": "^0.2.1"
}
}