forked from meridius/confluence-to-markdown
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 954 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
{
"name": "confluence-to-markdown",
"version": "1.2.0",
"author": "Martin Lukes",
"license": "MIT",
"description": "Convert Confluence Pages to Markdown",
"keywords": [
"Confluence",
"Markdown",
"Confluence to Markdown"
],
"bin": "./bin/confluence-to-markdown",
"main": "./src/index.coffee",
"repository": "[email protected]:meridius/confluence-to-markdown.git",
"dependencies": {
"cheerio": "^0.22.0",
"coffee-script": "^1.10.0",
"figlet": "^1.5.2",
"fs": "0.0.1-security",
"joplin-turndown-plugin-gfm": "^1.0.12",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"path": "^0.12.7",
"rimraf": "^2.5.4",
"sync-exec": "^0.6.2",
"turndown": "^7.1.1",
"turndown-plugin-confluence-to-gfm": "^0.5.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-fs": "^0.1.0"
},
"scripts": {
"start": "coffee ./src/index.coffee",
"build": "coffee --output dist --compile src"
}
}