-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "htmlarkdown",
"author": "EvitanRelta",
"description": "HTML-to-Markdown converter that can output HTML-syntax when required. (eg. when there's \"align\" attribute in <p>, or \"width\" in <img>)",
"repository": "github:EvitanRelta/htmlarkdown",
"version": "1.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"tsconfig.*"
],
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.build.json",
"build-publish": "npm run build && npm publish",
"test": "jest --silent",
"test-watch": "jest --watch",
"pretty": "prettier --write ."
},
"devDependencies": {
"@swc/jest": "^0.2.24",
"@types/jest": "^29.2.4",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.17",
"@types/relateurl": "^0.2.29",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.1",
"ts-node": "^10.9.1",
"type-fest": "^3.4.0",
"typescript": "^4.9.4"
},
"dependencies": {
"escape-string-regexp": "^5.0.0",
"lodash": "^4.17.21",
"predicate-hof": "^2.0.1",
"relateurl": "^0.2.7"
}
}