forked from julianhille/MuhammaraJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.83 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
64
65
66
67
68
{
"name": "muhammara",
"version": "4.1.0",
"description": "Create, read and modify PDF files and streams. A drop in replacement for hummusjs PDF library",
"homepage": "https://github.com/julianhille/Muhammarajs",
"license": "Apache-2.0",
"author": "Julian <j.hille484@gmail.com>",
"main": "./lib/index.js",
"types": "./muhammara.d.ts",
"engines": {
"node": ">=17"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build --target_libc=musl ${EXTRA_NODE_PRE_GYP_FLAGS:-\"\"}",
"test": "mocha -R tap ./tests/*.js ./tests/**/*.js --timeout 15000",
"test:codestyle": "npx prettier -c ./",
"test:electron": "electron-mocha -R tap ./tests/*.js --timeout 15000",
"package": "node-pre-gyp package",
"recipe-jsdoc": "./node_modules/.bin/jsdoc -c jsdoc.conf"
},
"repository": {
"type": "git",
"url": "git://github.com/julianhille/Muhammarajs.git"
},
"keywords": [
"pdf",
"pdfhummus",
"muhammarajs",
"hummusjs",
"hummus"
],
"files": [
"src",
"lib",
"fonts",
"binding.gyp",
"muhammara.d.ts"
],
"dependencies": {
"@mapbox/node-pre-gyp": "1.1.0-dev.1",
"@xmldom/xmldom": "^0.8.6",
"linebreak": "^1.1.0",
"memory-streams": "^0.1.3"
},
"devDependencies": {
"@types/node": "^18.0.0",
"chai": "^4.3.6",
"docdash": "^2.0.1",
"fs-extra": "^9.1.0",
"jsdoc": "^4.0.3",
"mocha": "^10.2.0",
"npm": "^10.8.1",
"prettier": "^2.7.1"
},
"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/"
},
"bundleDependencies": [
"@mapbox/node-pre-gyp"
]
}