-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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": "dr-sax",
"version": "1.0.14",
"description": "An html to markdown converter for node that doesn't use jsdom",
"main": "index.js",
"scripts": {
"test": "if [ ! -d test/Markdown_1.0.1 ]; then npm run install-gruber; fi; tap test/*js",
"download-gruber": "curl http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip -o test/Markdown_1.0.1.zip ",
"unzip-gruber": "cd test && unzip Markdown_1.0.1.zip",
"install-gruber": "if [ -z $NOGRUBER ]; then npm run download-gruber && npm run unzip-gruber; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/toddself/dr-sax"
},
"keywords": [
"markdown",
"html",
"converter",
"pandoc",
"html-md",
"upndown",
"pdc"
],
"author": "Todd Kennedy",
"license": "MIT",
"bugs": {
"url": "https://github.com/toddself/dr-sax/issues"
},
"homepage": "https://github.com/toddself/dr-sax",
"dependencies": {
"htmlparser2": "~3.7.1",
"readable-stream": "~1.0.27-1"
},
"devDependencies": {
"commonmark": "~0.21.0",
"markdown": "~0.5.0",
"markdown-it": "~4.4.0",
"marked": "~0.3.2",
"tap": "~0.4.9"
}
}