forked from rse/node-prince
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"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.2.0",
"license": "MIT",
"author": {
"name": "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": "http://github.com/rse/node-prince"
},
"main": "./prince-api.js",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~1.1.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-clean": "~1.0.0",
"grunt-eslint": "~18.0.0"
},
"dependencies" : {
"promise": "~7.1.1",
"lodash": "~4.6.1",
"progress": "~1.1.8",
"request": "~2.69.0",
"which": "~1.2.4",
"chalk": "~1.1.3",
"tar": "~2.2.1",
"rimraf": "~2.5.2"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"install": "node ./prince-npm.js install",
"uninstall": "node ./prince-npm.js uninstall"
}
}