-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "enml2md",
"version": "0.1.0",
"author": "Ishibashi Hideto <me@ishibashihideto.net>",
"description": "Evernote Markup Language to Markdown Converter",
"bin": {
"enml2md": "./bin/enml2md"
},
"scripts": {
"test": "grunt test"
},
"main": "./lib/enml2md",
"repository": {
"type": "git",
"url": "https://github.com/zerobase/enml2md.git"
},
"keywords": [
"evernote",
"enml",
"enex",
"markdown"
],
"dependencies": {
"cheerio": "0.12.3",
"html2markdown": "1.1.0",
"mkdirp": "0.3.5",
"temp": "0.6.0",
"graceful-fs": "2.0.1",
"coffee-script": "~1.6.3",
"mime": "~1.2.11"
},
"devDependencies": {
"mocha": "1.13.0",
"should": "2.0.2",
"grunt-simple-mocha": "~0.4.0",
"grunt-contrib-coffee": "~0.7.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-watch": "~0.5.3",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.11",
"grunt-contrib-copy": "~0.4.1"
},
"license": "MIT",
"engines": {
"node": ">=0.10",
"npm": ">=1.3"
}
}