-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "@iarna/rtf-to-html",
"version": "1.1.0",
"main": "index.js",
"scripts": {
"test": "echo \"no test specified\"",
"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": [],
"author": "Rebecca Turner <[email protected]> (http://re-becca.org/)",
"license": "ISC",
"dependencies": {
"rtf-parser": "^1.0.4"
},
"devDependencies": {
"weallbehave": "*",
"weallcontribute": "*",
"standard": "*",
"standard-version": "*",
"tap": "*"
},
"description": "Convert RTF to HTML in pure JavaScript.",
"files": [
"index.js",
"rtf-to-html.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iarna/rtf-to-html.git"
},
"bugs": {
"url": "https://github.com/iarna/rtf-to-html/issues"
},
"homepage": "https://npmjs.com/package/@iarna/rtf-to-html"
}