-
Notifications
You must be signed in to change notification settings - Fork 170
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "hummus",
"version": "1.0.117",
"description": "Create, read and modify PDF files and streams",
"homepage": "http://pdfhummus.com/",
"license": "Apache-2.0",
"author": "Gal Kahana <gal.kahana@hotmail.com>",
"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"
],
"devDependencies": {
"aws-sdk": "^2.1357.0",
"chai": "^3.4.0",
"mocha": "^10.2.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/"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10"
}
}