forked from mnichols/node-mmd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1009 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
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"version":"4.4.4"
,"name":"mmd"
,"description":"Wrapper for Fletcher Penney's MultiMarkdown-4"
,"author":"Mike Nichols <[email protected]>"
,"homepage":"https://github.com/mnichols/node-mmd"
,"main": "build/Release/mmd.node"
,"license":"MIT"
,"contributors": [
{
"name": "William Ferrell",
"email": "[email protected]",
"url": "https://github.com/willfe"
}
]
,"engines":{
"node":">=0.10.16"
}
,"keywords": [
"markdown"
,"markup"
,"document"
]
,"files":[
"src"
,"README.md"
,"Makefile"
,"binding.gyp"
,"bin/preinstall.sh"
]
,"scripts": {
"preinstall": "./bin/preinstall.sh",
"test":"make test"
}
,"repository":{
"type":"git"
,"url":"https://github.com/mnichols/node-mmd.git"
}
,"bugs":{
"url":"https://github.com/mnichols/node-mmd/issues"
}
,"dependencies": {
"node-gyp":"latest"
}
,"devDependencies": {
"mocha":"latest",
"chai":"latest"
}
}