-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
44 lines (44 loc) · 1.27 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
{
"name": "csv-to-markdown-table",
"description": "JavaScript/Node.js Csv to Markdown Table Converter",
"main": "./lib/CsvToMarkdown.js",
"bin": "./bin/csv-to-markdown-table",
"version": "1.4.1",
"types": "./lib/CsvToMarkdown.d.js",
"scripts": {
"test": "node_modules/.bin/mocha test",
"lint": "node_modules/.bin/tslint -c tslint.json 'src/*.ts'",
"cover": "node_modules/.bin/istanbul cover _mocha",
"build": "node_modules/.bin/tsc && node ./bin/postfix.js",
"coveralls": "npm run cover -- --report lcovonly && 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",
"devDependencies": {
"@types/node": "^13.9.5",
"@types/requirejs": "^2.1.31",
"coveralls": "^3.1.1",
"istanbul": "^0.4.5",
"mocha": "^9.2.2",
"mocha-lcov-reporter": "^1.3.0",
"tslint": "^6.1.3",
"typescript": "^5.1.6"
}
}