UNPKG

1.48 kBJSONView Raw
1{
2 "name": "@marsaud/smb2",
3 "description": "SMB2 Client",
4 "homepage": "https://github.com/marsaud/node-smb2",
5 "version": "0.18.0",
6 "engines": {
7 "node": ">=5.10"
8 },
9 "author": {
10 "name": "Benjamin Chelli",
11 "email": "benjamin@chelli.net",
12 "url": "https://github.com/bchelli"
13 },
14 "contributors": [
15 "Fabrice Marsaud <fabrice.marsaud@vates.fr> (https://github.com/marsaud)"
16 ],
17 "types": "index.d.ts",
18 "main": "lib/smb2.js",
19 "repository": {
20 "type": "git",
21 "url": "https://github.com/marsaud/node-smb2"
22 },
23 "dependencies": {
24 "ntlm": "~0.1.1",
25 "readable-stream": "^3.0.6"
26 },
27 "keywords": [
28 "SMB",
29 "SMB2",
30 "SMB3",
31 "NTLM",
32 "CIFS",
33 "Samba"
34 ],
35 "scripts": {
36 "test": "tap ./test"
37 },
38 "devDependencies": {
39 "@iarna/toml": "^2.2.1",
40 "eslint": "^5.9.0",
41 "eslint-config-prettier": "^4.2.0",
42 "eslint-config-standard": "^12.0.0",
43 "eslint-plugin-import": "^2.14.0",
44 "eslint-plugin-node": "^9.0.1",
45 "eslint-plugin-promise": "^4.0.1",
46 "eslint-plugin-standard": "^4.0.0",
47 "get-stream": "^5.1.0",
48 "golike-defer": "^0.5.1",
49 "husky": "^2.2.0",
50 "lint-staged": "^8.1.0",
51 "prettier": "^1.15.3",
52 "promise-toolbox": "^0.18.1",
53 "tap": "^13.1.2"
54 },
55 "license": "MIT",
56 "husky": {
57 "hooks": {
58 "pre-commit": "lint-staged"
59 }
60 },
61 "lint-staged": {
62 "*.{js,md,ts}": [
63 "prettier --write",
64 "git add"
65 ],
66 "*.js": "eslint"
67 }
68}