-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 951 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·45 lines (45 loc) · 951 Bytes
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
{
"name": "nodeftpd",
"preferGlobal": true,
"version": "0.4.0",
"author": "Brandon Wamboldt <brandon.wamboldt@gmail.com>",
"description": "Flexible, light-weight FTP server",
"contributors": [
{
"name": "Brandon Wamboldt",
"email": "brandon.wamboldt@gmail.com"
}
],
"bin": {
"nodeftpd": "./bin/nodeftpd"
},
"main": "./bin/nodeftpd",
"scripts": {
"start": "./bin/nodeftpd start",
"stop": "./bin/nodeftpd stop",
"preinstall": "./bin/install_check.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/brandonwamboldt/nodeftpd.git"
},
"keywords": [
"cli",
"ftp",
"server"
],
"dependencies": {
"lodash": "1.0.x",
"moment": "2.0.x",
"authenticate-pam": "0.1.x",
"mongodb": "1.3.x",
"colors": "0.6.x",
"commander": "2.0.x",
"forever": "*"
},
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"os" : [ "!win32" ]
}