-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "pdfassembler",
"version": "0.1.0-beta.8",
"description": "The missing piece to edit PDF files directly in the browser. Disassembles PDFs to edtable JavaScript objects, then assembles them back into PDF files.",
"author": "David Schnell-Davis",
"license": "MIT",
"homepage": "https://www.pdfcircus.com",
"repository": {
"type": "git",
"url": "git+https://github.com/DevelopingMagic/pdfassembler.git"
},
"bugs": {
"url": "https://github.com/DevelopingMagic/pdfassembler/issues"
},
"keywords": [
"pdf",
"edit",
"modify",
"create",
"pdf.js"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist/*",
"build": "tsc && uglifyjs dist/pdfassembler.js -c -m --keep-fnames -o dist/pdfassembler.js",
"prepare": "npm run build"
},
"dependencies": {
"pako": "^1.0.6",
"pdfjs-dist": "^2.0.489",
"promise-queue": "^2.2.5"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/node": "^10.5.6",
"@types/pako": "^1.0.0",
"@types/pdfjs-dist": "^0.1.2",
"es6-promise": "^4.2.4",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"uglify-js": "^3.4.6"
}
}