-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 806 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 806 Bytes
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
{
"name": "marc",
"version": "0.1.0",
"description": "A better markdown parser and compiler",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"bin": {
"marc": "bin/marc"
},
"repository": {
"type": "git",
"url": "git://github.com/bredele/marc.git"
},
"keywords": [
"markdown",
"parser",
"compiler"
],
"author": "Olivier Wietrich <olivier.wietrich@gmail.com> (http://github.com/bredele)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bredele/marc/issues"
},
"devDependencies": {
"mocha": "~1.17.1"
},
"dependencies": {
"commander": "~2.1.0",
"datastore": "^1.0.0",
"marked": "~0.3.1",
"read-file-stdin": "0.0.3",
"store-supplant": "0.0.2",
"trim": "0.0.1",
"write-file-stdout": "0.0.2"
}
}