-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "jsftpd",
"id": "jsftpd",
"version": "1.2.2",
"description": "FTP server for node.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/mailsvb/jsftpd.git"
},
"keywords": [
"nodejs",
"ftp",
"ftpd",
"ftpd-server",
"file-transfer",
"ftp-server",
"file-transfer-protocol",
"ftpserver"
],
"author": {
"name": "Sven",
"email": "[email protected]",
"url": "https://github.com/mailsvb"
},
"devDependencies": {
"@babel/eslint-parser": "*",
"eslint": "*",
"eslint-config-standard": "*",
"eslint-plugin-babel": "*",
"eslint-plugin-import": "*",
"eslint-plugin-jsdoc": "*",
"eslint-plugin-node": "*",
"eslint-plugin-promise": "*",
"eslint-plugin-security": "*",
"husky": "*",
"jest": "^27.3.1",
"promise-socket": "^7.0.0"
},
"scripts": {
"lint:js": "eslint lib/ --ext .js",
"install-dev": "npm install --save-dev && husky install",
"test": "jest --runInBand"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"bugs": {
"url": "https://github.com/mailsvb/jsftpd.git/issues"
},
"homepage": "https://github.com/mailsvb/jsftpd#readme"
}