-
-
Notifications
You must be signed in to change notification settings - Fork 224
/
package.json
46 lines (46 loc) · 1.59 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
{
"name": "@html-to-text/monorepo",
"license": "MIT",
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/base",
"packages/html-to-text",
"packages/html-to-text-cli",
"packages/html-to-md"
],
"type": "module",
"scripts": {
"build:html-to-text": "npm run build -w ./packages/html-to-text",
"build:html-to-text-cli": "npm run build -w ./packages/html-to-text-cli",
"build:html-to-md": "npm run build -w ./packages/html-to-md",
"build": "npm run build:html-to-text && npm run build:html-to-text-cli && npm run build:html-to-md",
"cover:html-to-text": "npm run cover -w ./packages/html-to-text",
"cover:html-to-md": "npm run cover -w ./packages/html-to-md",
"cover": "concurrently npm:cover:*",
"example:md": "node --experimental-specifier-resolution=node ./example/html-to-md.js",
"example:text": "node --experimental-specifier-resolution=node ./example/html-to-text.js",
"lint": "eslint .",
"test:html-to-text": "npm run test -w ./packages/html-to-text",
"test:html-to-md": "npm run test -w ./packages/html-to-md",
"test": "concurrently npm:test:*"
},
"devDependencies": {
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/node": "14.18.42",
"ava": "^5.2.0",
"c8": "^7.13.0",
"chai": "^4.3.7",
"concurrently": "^8.0.1",
"copyfiles": "^2.4.1",
"eslint": "^8.39.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^43.0.7",
"mocha": "^10.2.0",
"rimraf": "^5.0.0",
"rollup": "^2.79.1"
}
}