forked from btimby/nodeftpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 2.7 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "ftpd",
"version": "0.2.14",
"description": "Node FTP Server",
"main": "./ftpd.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "eslint --max-warnings 0 . && ./node_modules/.bin/istanbul test _mocha",
"lint": "eslint --max-warnings 0 ."
},
"repository": {
"type": "git",
"url": "[email protected]:sstur/nodeftpd.git"
},
"keywords": [
"ftp",
"ftp-server",
"ftpd"
],
"author": "sstur",
"contributors": [
{
"name": "Alex Drummond",
"url": "https://github.com/addrummond"
},
{
"name": "Alan Szlosek",
"url": "https://github.com/alanszlosek"
},
{
"name": "asylumfunk",
"url": "https://github.com/asylumfunk"
},
{
"name": "Andrew Johnston",
"url": "https://github.com/billywhizz"
},
{
"name": "Mark Bogdanoff",
"url": "https://github.com/bog"
},
{
"name": "Gordon Barrs",
"url": "https://github.com/britebit"
},
{
"name": "Indra Gunawan",
"url": "https://github.com/coderbuzz"
},
{
"name": "Eric Newton",
"url": "https://github.com/eric-newton"
},
{
"name": "Eric Fong",
"url": "https://github.com/ericfong"
},
{
"name": "headconnect",
"url": "https://github.com/headconnect"
},
{
"name": "José F. Romaniello",
"url": "https://github.com/jfromaniello"
},
{
"name": "Joshua Hull",
"url": "https://github.com/joshbuddy"
},
{
"name": "Ernesto Méndez",
"url": "https://github.com/mendezcode"
},
{
"name": "M.K.",
"url": "https://github.com/mk-pmb"
},
{
"name": "Phillip Green II",
"url": "https://github.com/phillipgreenii"
},
{
"name": "Oleksiy Krivoshey",
"url": "https://github.com/oleksiyk"
},
{
"name": "Alan Wong",
"url": "https://github.com/pye2k"
},
{
"name": "Rogier Schouten",
"url": "https://github.com/rogierschouten"
},
{
"name": "Sean Lang",
"url": "https://github.com/slang800"
},
{
"name": "Simon Sturmer",
"url": "https://github.com/sstur"
},
{
"name": "Thomas Schaaf",
"url": "https://github.com/thomaschaaf"
}
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/sstur/nodeftpd/issues"
},
"dependencies": {
"async-lock": "^1.3.0",
"dateformat": "1.0.7-1.2.3",
"stat-mode": "^0.2.1"
},
"devDependencies": {
"async": "~0.1.15",
"collect-stream": "^1.1.1",
"eslint": "^7.28.0",
"ftp": "^0.3.10",
"istanbul": "~0.2.4",
"jsftp": "^1.5.4",
"mocha": "^2.5.3",
"should": "~3.1.2"
}
}