forked from julianhille/MuhammaraJS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.56 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.56 KB
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
{
"name": "muhammara",
"version": "1.10.0",
"description": "Create, read and modify PDF files and streams. A drop in replacement for hummujs PDF library",
"homepage": "https://github.com/julianhille/Muhammarajs",
"license": "Apache-2.0",
"author": "Julian <j.hille484@gmail.com>",
"main": "./muhammara.js",
"types": "./muhammara.d.ts",
"scripts": {
"install": "node-pre-gyp install --fallback-to-build ${EXTRA_NODE_PRE_GYP_FLAGS:-\"\"}",
"test": "mocha -R tap ./tests/*.js --timeout 15000",
"test:electron": "electron-mocha -R tap ./tests/*.js --timeout 15000",
"package": "node-pre-gyp package"
},
"repository": {
"type": "git",
"url": "git://github.com/julianhille/Muhammarajs.git"
},
"keywords": [
"pdf",
"pdfhummus",
"muhammarajs",
"hummusjs",
"hummus"
],
"files": [
"src",
"muhammara.js",
"muhammara.d.ts",
"binding.gyp",
"PDFRStreamForFile.js",
"PDFStreamForResponse.js",
"PDFWStreamForFile.js",
"PDFRStreamForBuffer.js",
"PDFWStreamForBuffer.js"
],
"dependencies": {
"node-pre-gyp": "^0.17.0"
},
"bundledDependencies": [
"node-pre-gyp"
],
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.2.3",
"npm": "^6.14.5"
},
"binary": {
"module_name": "muhammara",
"module_path": "./binding",
"remote_path": "julianhille/MuhammaraJS/releases/download/{version}",
"host": "https://github.com",
"package_name": "{node_abi}-{platform}-{arch}-{libc}.tar.gz"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}