-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
47 lines (47 loc) · 1.16 KB
/
package.json
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
{
"name": "csv2md",
"version": "1.1.0",
"description": "csv2md transforms csv data to markdown tables",
"main": "src/csv2md",
"bin": {
"csv2md": "bin/csv2md"
},
"scripts": {
"test": "npm run build; node_modules/mocha/bin/mocha test/**/test.ts",
"build": "tsc --project tsconfig.json",
"watch": "tsc --project tsconfig.json -w"
},
"repository": {
"type": "git",
"url": "git://github.com/pstaender/csv2md.git"
},
"homepage": "https://github.com/pstaender/csv2md",
"bugs": "https://github.com/pstaender/csv2md/issues",
"keywords": [
"csv",
"markdown",
"table",
"converter"
],
"author": "Philipp Staender <[email protected]>",
"license": "MIT",
"dependencies": {
"csv-parse": "^4.11.1",
"get-stream": "^5.1.0",
"stream-transform": "^2.0.2",
"yargs": "^11.1.1"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/jest": "^26.0.5",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.23",
"@types/yargs": "^15.0.5",
"chai": "^4.2.0",
"mocha": "^6.2.3",
"source-map-support": "*",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"typings": "^2.1.1"
}
}