forked from iarna/rtf-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "@oghma/rtf-parser",
"version": "2.1.0",
"description": "General RTF parser producing a structured document object. Oghmere fork of iarna/rtf-parser with correct character-encoding handling (literal 8-bit text, \\ansi codepage default, \\ucN Unicode fallback) and correct style scoping across nested groups.",
"main": "index.js",
"dependencies": {
"iconv-lite": "^0.7.3"
},
"devDependencies": {
"standard": "^17.1.2",
"tap": "^21.7.5"
},
"scripts": {
"test": "standard && tap test/",
"pretest": "standard"
},
"keywords": [
"rtf"
],
"author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org/)",
"contributors": [
"Oghmere (https://github.com/Oghmere)"
],
"license": "ISC",
"files": [
"index.js",
"rtf-interpreter.js",
"rtf-parser.js",
"rtf-group.js",
"rtf-document.js",
"rtf-paragraph.js",
"rtf-span.js",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"directories": {
"test": "test"
},
"publishConfig": {
"registry": "https://ardua.eremhgo.dev/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Oghmere/rtf-parser.git"
},
"bugs": {
"url": "https://github.com/Oghmere/rtf-parser/issues"
},
"homepage": "https://github.com/Oghmere/rtf-parser#readme"
}