-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "md2confluence",
"version": "2.1.0",
"description": "Update confluence pages from your markdown files (like a README.md)",
"main": "dist/index.js",
"bin": {
"md2confluence": "bin/md2confluence"
},
"files": [
"dist",
"bin"
],
"scripts": {
"lint": "eslint lib/index.js",
"prebuild": "npm run lint",
"build": "babel lib --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": ""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jormar/md2confluence.git"
},
"keywords": [
"confluence",
"content confluence",
"update page confluence",
"update confluence",
"readme to confluence",
"page confluence",
"markdown",
"markdown wiki"
],
"author": "Jormar Arellano <[email protected]> (https://github.com/jormar)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jormar/md2confluence/issues"
},
"homepage": "https://github.com/jormar/md2confluence#readme",
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"eslint": "5.12.1",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.12.4"
},
"dependencies": {
"fs-promise": "2.0.3",
"inquirer": "6.2.1",
"markdown2confluence": "1.3.0",
"request": "2.88.0",
"request-promise": "4.2.2",
"winston": "3.1.0"
}
}