forked from iarna/rtf-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "rtf-parser",
"version": "1.1.0",
"description": "This is a general RTF parser. It takes a text stream and produces a document object representing the parsed document. In and of itself, this isn't super useful but it's the building block for other tools to convert RTF into other formats.",
"main": "index.js",
"dependencies": {
"iconv-lite": "^0.4.15",
"readable-stream": "^2.2.2"
},
"devDependencies": {
"standard": "^8.6.0",
"tap": "^9.0.3"
},
"scripts": {
"test": "standard && tap test/"
},
"keywords": [
"rtf"
],
"author": "Rebecca Turner <[email protected]> (http://re-becca.org/)",
"license": "ISC",
"files": [
"index.js",
"rtf-interpreter.js",
"rtf-parser.js",
"rtf-group.js",
"rtf-document.js",
"rtf-paragraph.js",
"rtf-span.js"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iarna/rtf-parser.git"
},
"bugs": {
"url": "https://github.com/iarna/rtf-parser/issues"
},
"homepage": "https://npmjs.com/package/rtf-parser"
}