-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.12 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
{
"name": "pdf-to-image",
"version": "1.1.2",
"description": "Progressively render PDFs as images on the client",
"main": "echo 'no entry point'",
"directories": {
"test": "test"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"babel-preset-es2017": "^6.24.1",
"chai": "^4.0.2",
"mocha": "^3.4.2",
"mocha-phantomjs-core": "^2.1.1",
"xo": "^0.18.2"
},
"scripts": {
"test": "phantomjs node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js test/index.html",
"lint": "xo './src/*.js' --space",
"build": "babel src/pdf-to-image.js --out-file dist/pdf-to-image-es5.js && concat-cli -f src/lib/*.js dist/pdf-to-image-es5.js -o dist/pdf-to-image-dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheProfs/pdf-to-image.git"
},
"keywords": [
"pdf",
"client",
"pdf.js",
"image"
],
"author": "@TheProfs",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/TheProfs/pdf-to-image/issues"
},
"homepage": "https://github.com/TheProfs/pdf-to-image#readme"
}