-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
77 lines (77 loc) · 1.72 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
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": "markdown-table-formatter",
"version": "1.6.1",
"description": "Format markdown tables in files",
"main": "./lib/index.js",
"files": [
"lib/"
],
"bin": {
"markdown-table-formatter": "lib/index.js"
},
"scripts": {
"lint:fix": "eslint **/*.js --fix && prettier --write \"./lib/**/*.{js,jsx,json}\" --tab-width 4 --print-width 150",
"test": "mocha \"test/**/*.test.js\"",
"test:coverage": "nyc npm run test",
"test:debug": "env DEBUG=markdown-table-formatter mocha --reporter spec \"test/**/*.test.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nvuillam/markdown-table-formatter.git"
},
"keywords": [
"markdown",
"table",
"formatter",
"format",
"prettify"
],
"author": "Nicolas Vuillamy",
"license": "MIT",
"bugs": {
"url": "https://github.com/nvuillam/markdown-table-formatter/issues"
},
"homepage": "https://github.com/nvuillam/markdown-table-formatter#readme",
"dependencies": {
"debug": "^4.3.4",
"find-package-json": "^1.2.0",
"fs-extra": "^11.1.1",
"glob": "^11.0.0",
"markdown-table-prettify": "^3.6.0",
"optionator": "^0.9.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"eslint": "^9.0.0",
"mega-linter-runner": "^8.0.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"which": "^4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"mocha": {
"require": [
"test/helpers/init.js"
],
"watch-extensions": [
"js"
],
"recursive": true,
"reporter": "spec",
"timeout": "300000"
},
"nyc": {
"include": [
"lib/**"
],
"extension": [
".js"
],
"reporter": [
"html"
],
"all": true
}
}