-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "marked-renderer-pdf",
"version": "0.0.6",
"description": "an extensible PDF-renderer for marked markdown parser",
"main": "lib/index.js",
"scripts": {
"dev-browser": "webpack-dev-server --env.NODE_ENV=web --config=browser.webpack.config.js --open",
"build-browser": "webpack --env.NODE_ENV=web --config=browser.webpack.config.js",
"test": "nyc mocha test/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cepharum/marked-renderer-pdf.git"
},
"author": "Thomas Urban",
"license": "MIT",
"bugs": {
"url": "https://github.com/cepharum/marked-renderer-pdf/issues"
},
"homepage": "https://github.com/cepharum/marked-renderer-pdf#readme",
"devDependencies": {
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.4.0",
"eslint-config-cepharum": "^1.0.7",
"eslint-plugin-promise": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"mocha": "^5.2.0",
"nyc": "^13.0.1",
"should": "^13.2.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"marked": "^0.5.0",
"pdfjs": "^2.0.0"
},
"keywords": [
"markdown",
"pdf",
"converter"
]
}