-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "amx-ftp",
"version": "2.0.15",
"description": "Send and retrieve files over FTP from AMX Netlinx processor",
"main": "index.js",
"engines": {
"node": ">=8"
},
"os": [
"win32"
],
"scripts": {
"test": "jest && codecov"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/vendor/**",
"!index.js",
"!example.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ashleymarkfletcher/amx-ftp.git"
},
"keywords": [
"AMX",
"Harman",
"FTP",
"Netlinx"
],
"author": "Ashley Fletcher <ashleymarkfletcher@gmail.com>",
"license": "ISC",
"dependencies": {
"codecov": "^3.0.0",
"ftp": "^0.3.10",
"ftpd": "git+https://github.com/sstur/nodeftpd.git"
},
"bugs": {
"url": "https://github.com/ashleymarkfletcher/amx-ftp/issues"
},
"homepage": "https://github.com/ashleymarkfletcher/amx-ftp#readme",
"devDependencies": {
"jest": "^21.2.1"
}
}