-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.93 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
{
"name": "annotatedtext-rehype",
"version": "1.0.12",
"type": "module",
"description": "A lightweight JavaScript library based on annotatedtext and remark-hype for converting html documents into an annotated text format consumable by LanguageTool as AnnotatedText.",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"exports": [
"./out/index.js",
"./types/index.d.ts"
],
"types": "types/index.d.ts",
"files": [
"out/**/*",
"types/index.d.ts"
],
"scripts": {
"test": "mocha --reporter spec ./tests/test.js",
"clean": "rm -rf out/*",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"lint": "eslint .",
"prepublishOnly": "git push --follow-tags && gh-release -y",
"version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prosegrinder/annotatedtext-rehype.git"
},
"keywords": [
"languagetool",
"annotatedtext",
"rehype-parse"
],
"author": "David L. Day <[email protected]> (https://www.davidlday.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prosegrinder/annotatedtext-rehype/issues"
},
"homepage": "https://github.com/prosegrinder/annotatedtext-rehype#readme",
"dependencies": {
"annotatedtext": "^1.2.0",
"rehype-parse": "^8.0.4",
"unified": "^10.1.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/chai": "^5.0.0",
"@types/eslint__js": "^8.42.3",
"@types/mocha": "^10.0.3",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"chai": "^5.1.0",
"eslint": "^9.9.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-tsdoc": "^0.4.0",
"mocha": "^11.0.1",
"typedoc": "^0.27.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0"
}
}