forked from bchelli/node-smb2
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
68 lines (68 loc) · 1.45 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
{
"name": "@marsaud/smb2",
"description": "SMB2 Client",
"homepage": "https://github.com/marsaud/node-smb2",
"version": "0.18.0",
"engines": {
"node": ">=5.10"
},
"author": {
"name": "Benjamin Chelli",
"email": "[email protected]",
"url": "https://github.com/bchelli"
},
"contributors": [
"Fabrice Marsaud <[email protected]> (https://github.com/marsaud)"
],
"types": "index.d.ts",
"main": "lib/smb2.js",
"repository": {
"type": "git",
"url": "https://github.com/marsaud/node-smb2"
},
"dependencies": {
"ntlm": "~0.1.1",
"readable-stream": "^3.0.6"
},
"keywords": [
"SMB",
"SMB2",
"SMB3",
"NTLM",
"CIFS",
"Samba"
],
"scripts": {
"test": "tap ./test"
},
"devDependencies": {
"@iarna/toml": "^2.2.1",
"eslint": "^5.9.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"get-stream": "^5.1.0",
"golike-defer": "^0.5.1",
"husky": "^2.2.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"promise-toolbox": "^0.18.1",
"tap": "^13.1.2"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,ts}": [
"prettier --write",
"git add"
],
"*.js": "eslint"
}
}