forked from chunpu/markdown2confluence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
{
"name": "markdown2confluence",
"version": "1.3.0",
"description": "convert markdown to confluence markup",
"main": "index.js",
"scripts": {
"test": "node test.js",
"build": "npm run build-html && npm run build-js",
"build-html": "jade -p node_modules/jade-gist/. < browser/index.jade > browser/index.html",
"build-js": "webpack browser/app.js --output-filename=browser/bundle.js",
"readme": "pretty-readme > readme.md"
},
"author": "ft",
"license": "ISC",
"dependencies": {
"jade": "^1.11.0",
"jade-gist": "^1.0.3",
"marked": "^0.3.2",
"min-qs": "^1.3.0",
"min-util": "^2.3.0",
"raw-loader": "^0.5.1",
"webpack": "^1.14.0"
},
"bin": {
"markdown2confluence": "bin/markdown2confluence.js"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/chunpu/markdown2confluence.git"
},
"keywords": [
"markdown",
"confluence",
"markup",
"convert"
],
"bugs": {
"url": "https://github.com/chunpu/markdown2confluence/issues"
},
"homepage": "https://github.com/chunpu/markdown2confluence"
}