forked from Node-SMB/marsaud-smb2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "@marsaud/smb2",
"description": "SMB2 Client",
"homepage": "https://github.com/marsaud/node-smb2",
"version": "0.7.2",
"engines": [
"node"
],
"author": {
"name": "Benjamin Chelli",
"email": "[email protected]",
"url": "https://github.com/bchelli"
},
"contributors": [
"Fabrice Marsaud <[email protected]> (https://github.com/marsaud)"
],
"main": "lib/smb2.js",
"repository": {
"type": "git",
"url": "https://github.com/marsaud/node-smb2"
},
"dependencies": {
"babel-runtime": "^5.8.34",
"bluebird": "^2.10.2",
"ntlm": "~0.1.1"
},
"keywords": [
"SMB",
"SMB2",
"SMB3",
"NTLM",
"CIFS",
"Samba"
],
"scripts": {
"build": "./node_modules/.bin/babel --source-maps --out-dir=lib/api/ lib/api/src",
"prepublish": "npm run build"
},
"devDependencies": {
"babel": "^5.8.34",
"babel-eslint": "^4.1.6",
"source-map-support": "^0.4.0",
"standard": "^5.4.1"
},
"standard": {
"parser": "babel-eslint"
},
"license": "MIT"
}