-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.57 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
{
"name": "@inkdropapp/html2markdown",
"version": "4.0.0",
"description": "Convert HTML to Markdown using remark and rehype",
"type": "module",
"main": "lib/index.esm.js",
"types": "lib/index.d.ts",
"unpkg": "lib/index.umd.js",
"scripts": {
"build": "rollup --bundleConfigAsCjs -c",
"lint": "eslint src __tests__ && tsc --noEmit",
"format": "prettier . -w --loglevel warn",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.js",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/inkdropapp/html2markdown.git"
},
"keywords": [
"remark",
"markdown",
"html"
],
"author": "Takuya Matsuyama <hi@craftz.dog>",
"license": "MIT",
"homepage": "https://github.com/inkdropapp/html2markdown",
"dependencies": {
"mdast-util-gfm": "^3.0.0",
"mdast-util-to-markdown": "^2.1.0",
"rehype-parse": "^9.0.0",
"rehype-remark": "^10.0.0",
"remark-squeeze-links": "^1.0.2",
"unified": "^11.0.4"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/dedent": "^0.7.2",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"dedent": "^1.5.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}