forked from galkahana/HummusJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "hummus",
"version": "1.0.108",
"description": "Create, read and modify PDF files and streams",
"homepage": "http://pdfhummus.com/",
"license": "Apache-2.0",
"author": "Gal Kahana <[email protected]>",
"main": "./hummus.js",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build $EXTRA_NODE_PRE_GYP_FLAGS",
"test": "mocha -R tap ./tests/*.js --timeout 15000"
},
"repository": {
"type": "git",
"url": "git://github.com/galkahana/HummusJS.git"
},
"keywords": [
"pdf",
"pdfhummus"
],
"files": [
"src",
"hummus.js",
"binding.gyp",
"PDFRStreamForFile.js",
"PDFStreamForResponse.js",
"PDFWStreamForFile.js",
"PDFRStreamForBuffer.js",
"PDFWStreamForBuffer.js"
],
"dependencies": {
"node-pre-gyp": "^0.10.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"aws-sdk": "~2.0.0-rc.15",
"chai": "^3.4.0",
"mocha": "^2.3.3",
"npm": "^5.8.0"
},
"binary": {
"module_name": "hummus",
"module_path": "./binding",
"remote_path": "./{module_name}/v{version}/{toolset}/",
"host": "https://hummus.s3-us-west-2.amazonaws.com",
"package_name": "{node_abi}-{platform}-{arch}-{libc}.tar.gz"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}