forked from evilstreak/markdown-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.44 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
52
53
54
55
56
57
58
59
60
{
"name": "markdown",
"version": "0.6.0-beta1",
"description": "A sensible Markdown parser for javascript",
"keywords": [
"markdown",
"text processing",
"ast"
],
"maintainers": [
"Dominic Baggott <dominic.baggott@gmail.com> (http://evilstreak.co.uk)",
"Ash Berlin <ash_markdownjs@firemirror.com> (http://ashberlin.com)"
],
"contributors": [
"Dominic Baggott <dominic.baggott@gmail.com> (http://evilstreak.co.uk)",
"Ash Berlin <ash_markdownjs@firemirror.com> (http://ashberlin.com)",
"XhmikosR <xhmikosr@users.sourceforge.net>",
"Robin Ward <robin.ward@gmail.com> (http://eviltrout.com)"
],
"bugs": {
"url": "https://github.com/evilstreak/markdown-js/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/evilstreak/markdown-js.git"
},
"main": "./lib/index.js",
"bin": {
"md2html": "./bin/md2html.js"
},
"files": [
"bin",
"lib",
"Changes.md",
"README.md"
],
"dependencies": {
"nopt": "~2.1.1"
},
"devDependencies": {
"amdefine": "~0.0.8",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-contrib-jshint": "~0.6.4",
"grunt-contrib-uglify": "~0.2.4",
"grunt-node-tap": "0.1.46",
"requirejs": "~2.1.8",
"tap": "~0.3.3"
},
"scripts": {
"test": "grunt test",
"tap": "grunt node_tap",
"lint": "grunt jshint",
"prepublish": "grunt build"
},
"engines": {
"node": ">=0.10.0"
}
}