-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
68 lines (68 loc) · 1.81 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": "5.2.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 <[email protected]>",
"main": "./lib/index.js",
"types": "./muhammara.d.ts",
"engines": {
"node": ">=17"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build ${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.0.11",
"linebreak": "^1.1.0",
"memory-streams": "^0.1.3",
"@xmldom/xmldom": "^0.8.6"
},
"devDependencies": {
"@types/node": "^22.2.0",
"chai": "^4.5.0",
"mocha": "^10.7.3",
"npm": "^10.8.2",
"prettier": "^3.3.3",
"docdash": "^2.0.1",
"fs-extra": "^11.2.0",
"jsdoc": "^4.0.3"
},
"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"
]
}