-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
49 lines (49 loc) · 1.56 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
46
47
48
49
{
"name": "annotpdf",
"version": "1.0.15",
"description": "Javascript library for creating annotations in PDF documents",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc && webpack",
"test": "jest --config jestconfig.json",
"example": "http-server -p 8080"
},
"files": [
"lib/**/*",
"_bundles/**/*",
"examples/**/*"
],
"keywords": [
"pdf",
"annotation",
"review"
],
"author": "Thomas Osterland",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.14",
"@types/node": "^10.14.19",
"jest": "^23.6.0",
"text-encoder": "0.0.4",
"ts-jest": "^23.10.5",
"ts-loader": "^5.4.5",
"typescript": "^3.9.10",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.9"
},
"repository": {
"type": "git",
"url": "https://github.com/highkite/pdfAnnotate.git"
},
"bugs": {
"url": "https://github.com/highkite/pdfAnnotate.git/issues"
},
"homepage": "https://github.com/highkite/pdfAnnotate.git",
"dependencies": {
"@types/crypto-js": "^4.0.1",
"@types/pako": "^1.0.1",
"crypto-js": "^4.0.0",
"pako": "^1.0.10"
}
}