forked from pplewa/node-html2enml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 812 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 812 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
{
"author": "Georg Lukas Grob, pplewa, mahadevan k",
"name": "htmltoenml",
"description": "HTML to ENML (Evernote Markup Language) convertor for Node.JS",
"version": "1.3.0",
"license": "GPLv3",
"repository": {
"url": "https://github.com/grobgl/node-html2enml.git"
},
"main": "./lib/html2enml",
"scripts": {
"test": "make test"
},
"dependencies": {
"async": "^1.5.2",
"evernote": "^1.25.82",
"mime": "^1.3.4",
"spark-md5": "^2.0.0",
"xmldom": ">=0.1.19",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"chai": "^1.10.0",
"coffee-script": ">= 1.3",
"mocha": "^2.1.0",
"semver": "^5.1.0"
},
"keywords": [
"html",
"converter",
"evernote",
"enml"
],
"optionalDependencies": {},
"engines": {
"node": "*"
}
}