-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
83 lines (83 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "pdf2pic",
"version": "3.1.3",
"description": "A utility for converting pdf to image formats. Supports different outputs: directly to file, base64 or buffer.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"gm": "^1.25.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^4.0.4",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/chai": "^4.3.5",
"@types/gm": "^1.25.1",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.39",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.1",
"rollup": "^3.27.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"scripts": {
"mocha": "mocha test/**/*.test.ts",
"test": "nyc --reporter=lcov npm run mocha",
"test:text": "nyc --reporter=text npm run mocha",
"test:watch": "npm run mocha -- --watch",
"rollup": "rollup -c",
"clean": "rimraf ./dist",
"lint": "eslint --ext .ts .",
"build": "npm run test && npm run clean && npm run rollup",
"prepare": "husky install"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yakovmeister/pdf2image.git"
},
"directories": {
"test": "test"
},
"keywords": [
"pdf-to-image",
"pdf-to-jpg",
"pdf-to-png",
"pdf",
"convert",
"image",
"pdf2img",
"pdf2pic",
"pdf2image",
"imagemagick",
"graphicsmagick",
"gm"
],
"funding": {
"type": "paypal",
"url": "https://www.paypal.me/yakovmeister"
},
"author": "Jacob Baring <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yakovmeister/pdf2image/issues"
},
"homepage": "https://github.com/yakovmeister/pdf2image#readme",
"lint-staged": {
"*.{js,ts}": ["prettier --write", "eslint --fix"]
}
}