forked from ninja-labs-tech/verify-pdf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@ninja-labs/verify-pdf",
"version": "1.0.0",
"description": "verify pdf files in JS",
"main": "lib/index.js",
"engines": {
"node": ">=8.9"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest",
"postinstall": "npm i ./packages/buffer --no-save"
},
"files": [
"lib",
"packages"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ninja-labs-tech/verify-pdf.git"
},
"keywords": [
"pdf",
"signature",
"digital signature",
"node",
"nodejs",
"verify"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ninja-labs-tech/verify-pdf/issues"
},
"homepage": "https://github.com/ninja-labs-tech/verify-pdf#readme",
"contributors": [
{
"name": "Mohammed Essehemy",
"url": "https://github.com/MohammedEssehemy"
}
],
"dependencies": {
"ieee754": "^1.2.1",
"node-forge": "1.2.0"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"node-signpdf": "^1.0.2",
"pdfkit": "0.10.0"
}
}