forked from rkusa/pdfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
42
{
"name": "pdfjs",
"author": {
"name": "Markus Ast",
"email": "npm.m@rkusa.st"
},
"version": "1.0.0-alpha.5",
"homepage": "https://github.com/rkusa/pdfjs",
"description": "A Portable Document Format (PDF) generation library targeting both the server- and client-side.",
"keywords": [
"pdf",
"generator"
],
"license": "MIT",
"main": "lib/index",
"scripts": {
"test": "tap strict test/index.js",
"prepublish": "browserify lib/index.js --debug --standalone pdfjs --detect-globals false | exorcist dist/pdfjs.js.map > dist/pdfjs.js"
},
"dependencies": {
"base-64": "^0.1.0",
"debug": "^2.2",
"linebreak": "^0.3.0",
"node-uuid": "^1.4",
"ttfjs": "^0.4.0",
"unorm": "^1.3"
},
"devDependencies": {
"browserify": "^11.1",
"exorcist": "^0.4.0",
"glob": "^5.0",
"tap": "^1.0"
},
"bugs": "https://github.com/rkusa/pdfjs/issues",
"repository": {
"type": "git",
"url": "git://github.com/rkusa/pdfjs.git"
},
"engines": {
"node": ">=0.8"
}
}