forked from patrickjuchli/basic-ftp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 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",
"version": "4.6.6",
"description": "FTP client for Node.js, supports 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\"",
"lint-fix": "eslint --fix \"./src/**/*.ts\"",
"dev": "npm run clean && tsc --watch",
"tdd": "mocha --watch",
"buildOnly": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/patrickjuchli/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/mocha": "8.2.2",
"@types/node": "15.12.2",
"@typescript-eslint/eslint-plugin": "4.26.1",
"@typescript-eslint/parser": "4.26.1",
"eslint": "7.28.0",
"mocha": "8.4.0",
"mock-fs": "4.14.0",
"rimraf": "3.0.2",
"typescript": "4.3.2"
}
}