-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.42 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
{
"name": "whoosh",
"version": "2.0.2",
"description": "A streaming sftp client",
"main": "index.js",
"scripts": {
"test": "zUnit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"docker": "docker-compose up -d",
"prepare": "husky install",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"keywords": [
"sftp",
"streaming",
"client"
],
"engines": {
"node": ">=14"
},
"author": "GuideSmiths",
"license": "ISC",
"devDependencies": {
"async": "^3.2.4",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"fs-extra": "^10.1.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"nyc": "^15.1.0",
"prettier": "2.6.2",
"zunit": "^3.2.1"
},
"dependencies": {
"debug": "^4.3.4",
"lodash": "^4.17.21",
"ssh2": "^1.10.0"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "https://github.com/guidesmiths/whoosh.git"
},
"bugs": {
"url": "https://github.com/guidesmiths/whoosh/issues"
},
"zUnit": {
"pollute": true
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"**/*.js": "eslint --fix ."
},
"homepage": "https://guidesmiths.github.io/whoosh/"
}