-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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": "archiver-zip-encryptable",
"version": "1.0.10",
"description": "An extension for archiver to zip with password encryption.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ksoichiro/node-archiver-zip-encryptable.git"
},
"bugs": {
"url": "https://github.com/ksoichiro/node-archiver-zip-encryptable/issues"
},
"main": "index.js",
"author": {
"name": "Soichiro Kashima",
"email": "[email protected]",
"url": "https://github.com/ksoichiro"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"zip",
"archive",
"encryption",
"password"
],
"dependencies": {
"archiver": "^3.1.1",
"crc32-stream": "^4.0.2",
"crypto-random-string": "^1.0.0",
"node-int64": "^0.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"mocha": "^7.1.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier": "^1.15.3",
"temp": "^0.8.3"
},
"scripts": {
"test:lint": "eslint --fix **/*.js",
"test:unit": "nyc mocha",
"test": "npm-run-all test:* report",
"report": "nyc report --reporter=lcov --report-dir=.coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}