-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.27 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.27 KB
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
49
50
{
"name": "gitbook-convert",
"version": "1.1.1",
"description": "Convert your existing books in different formats to GitBook",
"author": "GitBook Team <contact@gitbook.com>",
"license": "Apache-2.0",
"main": "bin/gitbook-convert.js",
"bin": {
"gitbook-convert": "bin/gitbook-convert.js"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"compile": "rm -rf lib/ && babel --presets es2015 -d lib/ src/",
"prepublish": "scripts/resources.sh && npm run compile",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"gitbook",
"import",
"convert",
"book"
],
"dependencies": {
"babel-polyfill": "^6.13.0",
"brightml": "^3.0.7",
"cheerio": "git://github.com/cheeriojs/cheerio.git#70c5608113d3efaf584efd29edafe173b74e106f",
"commander": "^2.9.0",
"lodash": "^3.10.1",
"mammoth": "^0.3.29",
"normall": "^0.2.2",
"odt2html": "1.0.1",
"q": "^1.4.1",
"to-markdown": "git://github.com/jpreynat/to-markdown.git#c88526cffbb62cd27faedcddcf279a946bc6de6e"
},
"contributors": [
{
"name": "Johan Preynat",
"email": "johan@gitbook.com"
}
],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.4.0"
}
}