forked from yakovmeister/pdf2image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "pdf2pic",
"version": "1.3.9",
"description": "A utility for converting pdf to image and base64 format.",
"main": "index.js",
"license": "MIT",
"homepage": "https://github.com/yakovmeister/pdf2image",
"repository": {
"type": "git",
"url": "https://github.com/yakovmeister/pdf2image.git"
},
"scripts": {
"clean": "rimraf ./lib && mkdir lib",
"clean:test": "rimraf ./test/output && mkdir test/output",
"clean:compile": "rimraf ./lib/compiled",
"compile:rollup": "rollup -c",
"compile": "npm run clean && npm run compile:rollup && npm run clean:compile",
"test": "npm run clean:test && mocha --require @babel/register"
},
"keywords": [
"pdf-to-image",
"pdf-to-jpg",
"pdf-to-png",
"pdf",
"convert",
"image",
"pdf2img",
"pdf2pic",
"pdf2image",
"imagemagick",
"graphicsmagick",
"gm"
],
"author": "Jacob Baring <[email protected]>",
"dependencies": {
"@babel/runtime": "^7.4.4",
"bluebird": "^3.5.1",
"fs-extra": "^4.0.2",
"gm": "^1.23.0",
"gm-base64": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"chai": "^4.2.0",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.17.2",
"mocha": "^4.1.0",
"rimraf": "^2.6.1",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.0.0-beta.7",
"rollup-plugin-uglify": "^6.0.2"
}
}