forked from yakovmeister/pdf2image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.93 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
{
"name": "pdf2pic",
"version": "2.1.4",
"description": "A utility for converting pdf to image and base64 format.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"fs-extra": "^9.1.0",
"gm": "^1.23.1"
},
"directories": {
"test": "test"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.2",
"@types/chai": "^4.2.14",
"@types/fs-extra": "^9.0.6",
"@types/gm": "^1.18.9",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.25",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.3.0",
"eslint": "^7.19.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.38.5",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.1.0",
"typescript": "^4.1.3"
},
"scripts": {
"mocha": "./node_modules/.bin/mocha test/**/*.test.ts",
"test": "npm run lint && nyc --reporter=lcov npm run mocha",
"test:text": "npm run lint && nyc --reporter=text npm run mocha",
"rollup": "rollup -c",
"clean": "rimraf ./dist",
"lint": "./node_modules/.bin/eslint . --ext .ts",
"build": "npm run test && npm run clean && npm run rollup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yakovmeister/pdf2image.git"
},
"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 <owari@waifu.club>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yakovmeister/pdf2image/issues"
},
"homepage": "https://github.com/yakovmeister/pdf2image#readme"
}