-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "pdfjs",
"author": "Markus Ast <[email protected]>",
"version": "2.5.3",
"description": "A Portable Document Format (PDF) generation library targeting both the server- and client-side.",
"keywords": [
"pdf",
"generator"
],
"license": "MIT",
"homepage": "https://github.com/rkusa/pdfjs",
"bugs": "https://github.com/rkusa/pdfjs/issues",
"main": "lib/index.js",
"scripts": {
"fmt": "prettier --write './{lib,test}/**/*.js'",
"test": "npm run test:pdfs && npm run test:types",
"test:pdfs": "node test/index.js",
"test:types": "tsc --project ./types"
},
"dependencies": {
"@rkusa/linebreak": "^1.0.0",
"opentype.js": "^1.3.3",
"pako": "^2.0.3",
"readable-stream": "^3.6.0",
"unorm": "^1.6.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/node": "^15.12.4",
"buffer": "^6.0.3",
"events": "^3.3.0",
"prettier": "^3.0.0",
"tape": "^5.0.1",
"typescript": "^4.0.3"
},
"repository": {
"type": "git",
"url": "git://github.com/rkusa/pdfjs.git"
},
"engines": {
"node": ">=7"
},
"types": "./types/main.d.ts"
}