forked from foliojs/pdfkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 888 Bytes
/
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
{
"name": "pdfkit",
"description": "A PDF generation library for Node.js",
"keywords": ["pdf", "pdf writer", "pdf generator", "graphics", "document", "vector"],
"version": "0.1.9",
"homepage": "http://pdfkit.org/",
"author": {
"name": "Devon Govett",
"email": "[email protected]",
"url": "http://badassjs.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/devongovett/pdfkit.git"
},
"bugs": "http://github.com/devongovett/pdfkit/issues",
"directories": {
"lib": "./lib",
"example": "./demo"
},
"devDependencies": {
"coffee-script": ">=1.0.1"
},
"dependencies": {
"png-js": ">=0.1.0"
},
"scripts": {
"prepublish": "coffee -o js -c lib/ && cp -r lib/font/data js/font/data",
"postpublish": "rm -rf ./js"
},
"main": "./js/document",
"engine": [ "node >= v0.6.0" ]
}