-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1011 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
{
"name": "@vtfk/pdf-splitter",
"version": "1.1.2",
"description": "A pdf splitter based on node-pdftk",
"main": "index.js",
"scripts": {
"test": "standard && node --experimental-vm-modules node_modules/jest/bin/jest.js --verbose",
"runExample": "node example.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vtfk/pdf-splitter.git"
},
"keywords": [
"pdf",
"split",
"splitter"
],
"author": "jorgtho",
"license": "MIT",
"bugs": {
"url": "https://github.com/vtfk/pdf-splitter/issues"
},
"homepage": "https://github.com/vtfk/pdf-splitter#readme",
"dependencies": {
"@vtfk/pdf-text-reader": "^1.1.3",
"bluebird": "^3.7.2",
"dotenv": "^16.0.0",
"node-pdftk": "^2.1.3"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testMatch": [
"**/tests/**/*.[jt]s?(x)",
"**/?(*.)+.(spec|test).[jt]s?(x)"
]
},
"devDependencies": {
"jest": "^29.7.0",
"standard": "16.0.4"
}
}