generated from un-ts/lib-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.79 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
{
"name": "cf2md",
"version": "0.3.4",
"type": "module",
"description": "Transform from confluence flavored HTML to Markdown with enhanced features.",
"repository": "git+https://github.com/rx-ts/cf2md.git",
"author": "JounQin <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=v12.22.11"
},
"bin": {
"cf2md": "./lib/cli.js"
},
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"exports": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"types": "lib",
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "run-p build:*",
"build:r": "r -f cjs",
"build:ts": "tsc -p src",
"lint": "run-p lint:*",
"lint:es": "eslint . --cache -f friendly --max-warnings 10",
"lint:tsc": "tsc --noEmit",
"prepare": "simple-git-hooks",
"prerelease": "pnpm build",
"release": "changeset publish",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"typecov": "type-coverage"
},
"dependencies": {
"commander": "^8.3.0",
"hast-util-is-element": "^2.1.1",
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
"remark-directive": "^2.0.1",
"remark-gfm": "^3.0.1",
"remark-stringify": "^10.0.2",
"unified": "^10.1.1",
"unified-stream": "^2.0.0"
},
"devDependencies": {
"@1stg/lib-config": "^4.1.2",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.20.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.11",
"ts-jest": "^27.1.5",
"type-coverage": "^2.19.0",
"typescript": "^4.5.5"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}