-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1009 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "docxtopdf-cli",
"main": "index.js",
"bin": {
"docxtopdf-cli": "index.js"
},
"preferGlobal": true,
"version": "1.1.0",
"description": "Convert .docx file to .pdf",
"author": {
"name": "TiagoDanin",
"email": "[email protected]",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"convert",
"covert",
"docx",
"pdf",
"pdf-viewer"
],
"scripts": {
"start": "node index.js",
"test": "echo \"Nice Test :)\""
},
"engines": {
"node": ">=8"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/DocxToPdf-CLI.git"
},
"homepage": "https://github.com/TiagoDanin/DocxToPdf-CLI#readme",
"bugs": {
"url": "https://github.com/TiagoDanin/DocxToPdf-CLI/issues"
},
"github": {
"name": "DocxToPdf-CLI",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"package.json"
],
"dependencies": {
"docx-pdf": "0.0.1",
"yargs": "16.0.3"
},
"devDependencies": {}
}