-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 932 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
{
"name": "evernote-markdown",
"version": "0.0.3",
"description": "convert Evernote's note to markdown",
"main": "index.coffee",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "coffee index.coffee"
},
"author": {
"name": "Artem Volkhin",
"email": "[email protected]",
"url": "http://volkhin.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/volkhin/evernote-markdown"
},
"bugs": {
"url": "https://github.com/volkhin/evernote-markdown/issues"
},
"keywords": [
"evernote",
"enml",
"markdown",
"converter"
],
"license": "MIT",
"dependencies": {
"coffee-script": "^1.12.3",
"debug": "^2.6.1",
"dotenv": "^4.0.0",
"entities": "^1.1.1",
"evernote": "^2.0.1-beta",
"libxmljs": "^0.18.4",
"mkdirp": "^0.5.0",
"underscore": "^1.6.0"
},
"engines": {
"node": ">= 4.6.0"
}
}