-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.38 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
51
52
53
54
55
{
"name": "md2c",
"version": "1.1.3",
"description": "convert markdown to confluence wiki markup.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"md2c": "./bin/md2c.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"demo": "webpack ./demo/index.src.js --output-filename=../demo/index.js --mode=production",
"test": "mocha --reporter spec -r ts-node/register test/index.ts",
"deploy": "git subtree push --prefix=demo origin gh-pages",
"coverage": "nyc npm test && nyc report --reporter=lcov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lichangwei/md2c.git"
},
"keywords": [
"markdown",
"confluence",
"wiki",
"convertor"
],
"author": "LiChangWei <lichangwei@love.com> (https://lichangwei.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lichangwei/md2c/issues"
},
"homepage": "https://github.com/lichangwei/md2c#readme",
"nyc": {
"extension": [
".ts"
]
},
"dependencies": {
"clipboardy": "^1.2.3",
"marked": "^0.5.0"
},
"devDependencies": {
"@types/marked": "^0.4.0",
"@types/mocha": "^5.2.5",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.0.1",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}