-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.26 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
{
"$schema": "https://json.schemastore.org/package.json",
"private": true,
"version": "1.0.0",
"scripts": {
"build": "lerna exec --scope @wcj/html-to-markdown -- tsbb build",
"watch": "lerna exec --scope @wcj/html-to-markdown -- tsbb watch",
"build:cli": "lerna exec --scope @wcj/html-to-markdown-cli -- tsbb build",
"watch:cli": "lerna exec --scope @wcj/html-to-markdown-cli -- tsbb watch",
"version": "lerna version --exact --force-publish --no-push --no-git-tag-version",
"test": "tsbb test",
"coverage": "tsbb test --coverage",
"start": "idoc --watch",
"doc": "idoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaywcjlove/html-to-markdown-cli.git"
},
"workspaces": [
"packages/**", "example/*"
],
"license": "MIT",
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"testMatch": [
"<rootDir>/packages/**/src/**/__test__/*.{js,ts}"
],
"collectCoverageFrom": [
"<rootDir>/packages/html-to-markdown/src/*.{js,ts}"
],
"transformIgnorePatterns": [
"<rootDir>/node_modules/?!(.*)"
]
},
"devDependencies": {
"idoc": "^1.25.0",
"lerna": "^8.0.0",
"tsbb": "^4.2.3"
}
}