-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.79 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.79 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
{
"name": "prince",
"homepage": "http://github.com/rse/node-prince",
"description": "Node API for executing XML/HTML to PDF renderer PrinceXML via prince(1) CLI",
"version": "1.14.7",
"license": "MIT",
"author": { "name": "Dr. Ralf S. Engelschall", "email": "rse@engelschall.com", "url": "http://engelschall.com" },
"keywords": [ "Prince", "PrinceXML", "CLI", "XML", "HTML", "PDF", "renderer", "API" ],
"repository": { "type": "git", "url": "git://github.com/rse/node-prince.git" },
"bugs": { "url": "https://github.com/rse/node-prince" },
"main": "./prince-api.js",
"types": "./prince-api.d.ts",
"devDependencies": {
"eslint": "10.0.3",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-contrib-clean": "2.0.1",
"grunt-eslint": "26.0.0"
},
"dependencies": {
"axios": "1.13.6",
"promise": "8.3.0",
"lodash": "4.17.23",
"progress": "2.0.3",
"which": "6.0.1",
"chalk": "4.1.2",
"tar": "7.5.11",
"node-stream-zip": "1.15.0",
"rimraf": "6.1.3",
"mkdirp": "3.0.1"
},
"upd": [ "!chalk" ],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"install": "node ./prince-npm.js install",
"uninstall": "node ./prince-npm.js uninstall",
"test": "node ./test.js"
}
}