forked from mixmark-io/turndown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 933 Bytes
/
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
{
"name": "@beneaththeink/to-markdown",
"description": "HTML-to-Markdown converter",
"url": "http://domchristie.github.com/to-markdown/",
"keywords": "markdown",
"author": "Dom Christie",
"main": "index.js",
"version": "2.0.1-ink1",
"repository": {
"type": "git",
"url": "https://github.com/beneaththeink/to-markdown.git"
},
"scripts": {
"start": "watchify -s toMarkdown -o dist/to-markdown.js index.js -v",
"build": "browserify -s toMarkdown -o dist/to-markdown.js index.js",
"test": "qunit -c ./index.js -t ./test/to-markdown-test.js ./test/gfm-test.js"
},
"devDependencies": {
"browserify": "~13.0.0",
"qunit": "^0.7.6",
"saucie": "0.1.3",
"testem": "^0.8.2",
"watchify": "^2.5.0"
},
"browser": {
"jsdom": false
},
"dependencies": {
"collapse-whitespace": "1.1.2",
"jsdom": "^6.5.1"
},
"engines": {
"node": "^4"
},
"license": "MIT"
}