-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
38 lines (38 loc) · 834 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
{
"name": "org-mode-parser",
"description": "A parser for the Emacs org-mode package. DRAWER and archive tag supported. Stronger API",
"homepage": "http://gioorgi.com/org-mode-parser",
"keywords": [
"parser",
"util",
"org-mode",
"orgmode",
"emacs"
],
"license": "MIT",
"author": "Giovanni Giorgi <[email protected]>",
"contributors": [],
"main": "./lib/org-mode-parser",
"version": "0.1.4",
"directories": {
"test": "./test"
},
"scripts": {
"test": "vows --spec -v test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/daitangio/org-mode-parser.git"
},
"engines": {
"node": ">=6.9.2"
},
"dependencies": {
"pug": "^2.0.0-beta6",
"underscore": "^1.8.3",
"winston": "^2.3.0"
},
"devDependencies": {
"vows": "^0.8.1"
}
}