-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.2 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": "pdfassembler",
"version": "0.1.0-beta.4",
"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://github.com/dschnelldavis/pdfAssembler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dschnelldavis/pdfAssembler.git"
},
"bugs": {
"url": "https://github.com/dschnelldavis/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.428"
},
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/node": "^9.4.7",
"@types/pako": "^1.0.0",
"@types/pdf": "0.0.31",
"es6-promise": "^4.2.4",
"rimraf": "^2.6.2",
"tslint": "^5.6.0",
"typescript": "^2.7.2",
"uglify-js": "^3.3.14"
}
}