-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 KB
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
{
"name": "annotatedtext",
"version": "1.2.1",
"type": "module",
"description": "A lightweight JavaScript library for converting various markup documents into an annotated text format consumable by LanguageTool.",
"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.git"
},
"keywords": [
"languagetool",
"annotated",
"text",
"builder"
],
"author": "David L. Day <david@davidlday.com> (https://www.davidlday.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prosegrinder/annotatedtext/issues"
},
"homepage": "https://github.com/prosegrinder/annotatedtext#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"chai": "^6.0.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsdoc": "^62.8.0",
"eslint-plugin-tsdoc": "^0.5.0",
"mocha": "^11.1.0",
"remark-parse": "^10.0.1",
"typedoc": "^0.28.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"unified": "^10.1.2"
}
}