-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "archiver-zip-encrypted",
"version": "2.0.0",
"description": "AES-256 and legacy Zip 2.0 encryption for Zip files",
"dependencies": {
"aes-js": "^3.1.2",
"archiver": "^7.0.0",
"archiver-utils": "^5.0.1",
"buffer-crc32": "^1.0.0",
"compress-commons": "^6.0.0",
"crc32-stream": "^6.0.0",
"zip-stream": "^6.0.0"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.5",
"should": "^13.2.3"
},
"scripts": {
"pretest": "eslint .",
"test": "nyc --reporter=html mocha",
"coverage": "nyc report --reporter=text-lcov "
},
"repository": {
"type": "git",
"url": "git+https://github.com/artem-karpenko/archiver-zip-encrypted.git"
},
"author": "Atrem Karpenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/artem-karpenko/archiver-zip-encrypted/issues"
},
"homepage": "https://github.com/artem-karpenko/archiver-zip-encrypted#readme",
"keywords": [
"zip",
"encryption",
"aes",
"archiver",
"password"
],
"engines": {
"node": ">=16"
}
}