forked from patrickjuchli/basic-ftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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": "basic-ftp-ct",
"version": "4.5.13",
"description": "FTP client for Node.js, supports explicit FTPS over TLS, IPv6, Async/Await, and Typescript.",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/**/*"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run lint && tsc && mocha",
"test": "npm run prepublishOnly",
"clean": "rimraf dist",
"lint": "eslint \"./src/**/*.ts\"",
"dev": "npm run clean && tsc --watch",
"tdd": "mocha --watch",
"buildOnly": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/clevertech/basic-ftp.git"
},
"author": "Patrick Juchli <patrickjuchli@gmail.com>",
"license": "MIT",
"keywords": [
"ftp",
"ftps",
"promise",
"async",
"await",
"tls",
"ipv6",
"typescript"
],
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"@types/node": "13.9.2",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"eslint": "^6.8.0",
"js-yaml": ">=3.13.1",
"minimist": ">=1.2.2",
"mocha": "7.1.1",
"mock-fs": "4.11.0",
"rimraf": "3.0.2",
"typescript": "3.8.3"
}
}