-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
94 lines (94 loc) · 2.7 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "to-markdown-cli",
"version": "2.0.0",
"description": "a little cli to turn html to markdown",
"engines": {
"node": ">=20"
},
"type": "module",
"main": "dist/html2md.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"testWithCoverage": "cross-env NODE_ENV=test jest --coverage",
"test:tofile": "node dist/html2md.js -i __tests__/index.html -o __tests__/index.md",
"//test:stdout": "node dist/index.js -i test/index.html",
"//test:gfm": "node dist/index.js -i --gfm test/index.html",
"//test": "npm run test:tofile && npm run test:stdout",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"watch": "tsc -p . -w",
"build": "tsc -p .",
"prepare": "npm run build",
"prettier": "prettier \"**/*.+(js|json|yml|yaml|ts)\"",
"prettier:list": "npm run prettier -- --list-different",
"prettier:write": "npm run prettier -- --write",
"validate": "npm run build",
"lint-staged": "lint-staged",
"lint": "eslint './src/**/*.ts'"
},
"author": "Fabian Morón Zirfas <[email protected]> (http://fabianmoronzirfas.me)",
"license": "MIT",
"dependencies": {
"clipboardy": "2.3.0",
"commander": "6.2.1",
"turndown": "7.2.0",
"turndown-plugin-gfm": "1.0.2"
},
"preferGlobal": true,
"bin": {
"html2md": "dist/html2md.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ff6347/to-markdown-cli.git"
},
"devDependencies": {
"@technologiestiftung/semantic-release-config": "1.2.4",
"@types/jest": "29.5.12",
"@types/mock-fs": "4.13.4",
"@types/turndown": "5.0.5",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"all-contributors-cli": "6.26.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-unobtrusive": "1.2.5",
"eslint-plugin-jest": "28.8.3",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.5",
"jest": "29.7.0",
"lint-staged": "15.2.9",
"mock-fs": "5.2.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
},
"contributors": [
"Fabian Morón Zirfas <[email protected]> (https://fabianmoronzirfas.me)",
"roose"
],
"keywords": [
"markdown",
"cli",
"convert",
"html"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run validate && npm run lint-staged"
}
},
"bugs": {
"url": "https://github.com/fabianmoronzirfas/to-markdown-cli/issues"
},
"homepage": "https://github.com/fabianmoronzirfas/to-markdown-cli#readme"
}