forked from eflexsystems/node-samba-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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
{
"name": "samba-client",
"version": "7.1.2",
"description": "wrapper for smbclient",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/eflexsystems/node-samba-client.git"
},
"keywords": [
"samba",
"smb",
"cifs",
"smbclient"
],
"author": "eFlex Systems",
"license": "MIT",
"bugs": {
"url": "https://github.com/eflexsystems/node-samba-client/issues"
},
"homepage": "https://github.com/eflexsystems/node-samba-client",
"devDependencies": {
"@types/node": "^18.15.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^2.8.4"
},
"dependencies": {
"execa": "^5.1.1"
},
"engines": {
"node": ">=14.0.0"
}
}