-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
51 lines (51 loc) · 1.56 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
{
"name": "rtf-parser",
"version": "1.3.3",
"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",
"weallbehave": "*",
"weallcontribute": "*",
"standard-version": "*"
},
"scripts": {
"test": "standard && tap test/",
"prerelease": "npm t",
"release": "standard-version -s",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"keywords": [
"rtf"
],
"author": "Rebecca Turner <me@re-becca.org> (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"
}