forked from Sparticuz/node-qpdf2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 KB
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
{
"name": "node-qpdf2",
"version": "5.1.1",
"description": "A Content Preserving transformations on PDFs wrapped around QPDF",
"keywords": [
"pdf",
"qpdf",
"password protect",
"password protect pdf",
"pdf encryption",
"pdf decryption",
"encrypt",
"dcrypt",
"aes",
"rc4",
"aes-256",
"aes-128",
"rc4-128",
"rc4-40"
],
"homepage": "https://github.com/Sparticuz/node-qpdf2",
"bugs": {
"url": "https://github.com/Sparticuz/node-qpdf2/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sparticuz/node-qpdf2.git"
},
"license": "MIT",
"author": "Kyle McNally <kyle@kmcnally.net>",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint --ignore-path .gitignore '**/*.[jt]s'",
"test": "c8 --reporter=lcov --reporter=text --all --include=src ava test/ --timeout=30s"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm/transpile-only"
]
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@sparticuz/eslint-config": "^7.2.0",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/node": "^18.15.11",
"ava": "^5.2.0",
"c8": "^7.13.0",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=16"
}
}