forked from neocotic/europa
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 KB
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
{
"name": "html-md",
"description": "JavaScript library for converting HTML in to valid Markdown",
"version": "3.0.2",
"homepage": "http://neocotic.com/html.md",
"bugs": {
"url": "https://github.com/neocotic/html.md/issues"
},
"author": {
"name": "Alasdair Mercer",
"email": "mercer.alasdair@gmail.com",
"url": "http://neocotic.com"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/neocotic/html.md/raw/master/LICENSE.md"
}
],
"keywords": [
"html",
"markdown",
"convert"
],
"repository": {
"type": "git",
"url": "git://github.com/neocotic/html.md.git"
},
"dependencies": {
"commander": "~2.0.0",
"fs-extra": "~0.7.0",
"jsdom": "~6.5.1"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-nodeunit": "~0.2.1",
"grunt-contrib-uglify": "~0.2.4",
"grunt-docco": "~0.2.0"
},
"scripts": {
"test": "grunt test"
},
"man": "./man/doc.1",
"bin": {
"htmlmd": "./bin/htmlmd"
},
"main": "./lib/md"
}