forked from aniket-deole/node-html2enml
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 866 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 866 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
39
40
{
"author": "Georg Lukas Grob, pplewa, mahadevan k",
"name": "html2enml2",
"description": "HTML to ENML (Evernote Markup Language) convertor for Node.JS",
"version": "2.0.7",
"license": "GPLv3",
"repository": {
"url": "https://github.com/grobgl/node-html2enml.git"
},
"main": "./src/html2enml",
"scripts": {
"test": "mocha -b test"
},
"dependencies": {
"async": "^1.5.2",
"evernote": "^2.0.5",
"file-type": "^8.1.0",
"mime": "^1.3.4",
"node-fetch": "^2.2.0",
"spark-md5": "^2.0.0",
"xmldom": ">=0.1.19",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"prettier": "^1.14.2",
"semver": "^5.1.0"
},
"keywords": [
"html",
"converter",
"evernote",
"enml"
],
"optionalDependencies": {},
"engines": {
"node": "*"
}
}