-
-
Notifications
You must be signed in to change notification settings - Fork 181
/
package.json
86 lines (86 loc) · 2.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@signpdf/signer-p12",
"version": "3.2.4",
"description": "Sign using a P12 certificate.",
"repository": {
"type": "git",
"url": "https://github.com/vbuch/node-signpdf"
},
"license": "MIT",
"keywords": [
"sign",
"pdf",
"node",
"nodejs",
"esign",
"adobe",
"ppklite",
"sign detached",
"pkcs7",
"pkcs#7",
"pades",
"P12",
"digital signature"
],
"funding": [
{
"type": "individual",
"url": "https://buymeacoffee.com/vbuch?utm_source=npm-funding-signpdf"
}
],
"main": "dist/P12Signer.js",
"types": "dist/P12Signer.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=12",
"yarn": ">=1.22.18"
},
"scripts": {
"test": "jest",
"build": "yarn build:clean && yarn build:compile && yarn build:types",
"lint": "eslint -c .eslintrc --ignore-path ../../.eslintignore ./",
"build:clean": "rm -rf ./dist/*",
"build:compile": "babel ./src -d ./dist --ignore \"**/*.test.js\"",
"build:types": "yarn build:types:compile && yarn build:types:verify",
"build:types:compile": "tsc",
"build:types:verify": "tsd --files=index.test-d.ts"
},
"dependencies": {
"@signpdf/utils": "^3.2.4"
},
"peerDependencies": {
"node-forge": "^1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.4.0",
"@babel/eslint-parser": "^7.16.3",
"@babel/node": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.4.2",
"@signpdf/eslint-config": "^3.2.3",
"@signpdf/internal-utils": "^3.2.0",
"@types/node": ">=12.0.0",
"@types/node-forge": "^1.2.1",
"assertion-error": "^1.1.0",
"babel-jest": "^27.3.1",
"babel-plugin-module-resolver": "^3.1.1",
"coveralls": "^3.0.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"husky": "^7.0.4",
"jest": "^27.3.1",
"node-forge": "^1.2.1",
"pdfkit": "~0.10.0",
"tsd": "^0.30.7",
"typescript": "^5.2.2"
},
"gitHead": "5d5ec00c21e072613acb9776c7c6ac7697314955"
}