-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
46 lines (46 loc) · 1.07 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
43
44
45
46
{
"name": "pdf-merger-js",
"version": "5.1.2",
"description": "merge multiple PDF documents, or parts of them, to a new PDF document",
"type": "module",
"engines": {
"node": ">=16"
},
"main": "./index.js",
"types": "./index.d.ts",
"browser": "./browser.js",
"bin": {
"pdf-merge": "cli.js"
},
"scripts": {
"standard": "standard",
"standard:fix": "standard --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest --detectOpenHandles",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --forceExit --detectOpenHandles"
},
"standard": {
"env": [
"jest",
"browser"
]
},
"repository": "github:nbesli/pdf-merger-js",
"keywords": [
"pdf",
"merge"
],
"author": "nbesli",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"pdf-lib": "^1.17.1"
},
"devDependencies": {
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"pdf-diff": "^0.1.1",
"standard": "^17.1.0"
}
}