This repository was archived by the owner on Aug 31, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.08 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
{
"name": "easy-pdf-merge",
"version": "0.2.6",
"description": "A node module to merge PDFs. Uses Apache PDFBox library.",
"main": "./distribution/index.js",
"engines": {
"node": ">=0.10.0"
},
"babel": {
"presets": [
"@babel/env"
]
},
"scripts": {
"test": "node test.js",
"build": "npx babel source --out-dir distribution",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karuppiah7890/easy-pdf-merge.git"
},
"keywords": [
"pdf",
"merge",
"easy",
"pdf-merge",
"merge-pdf",
"easy-pdf-merge",
"easy-merge-pdf"
],
"author": "Karuppiah <karuppiah7890@gmail.com> (https://www.github.com/karuppiah7890)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/karuppiah7890/easy-pdf-merge/issues",
"email": "karuppiah7890@gmail.com"
},
"homepage": "https://github.com/karuppiah7890/easy-pdf-merge#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4"
},
"dependencies": {}
}