{
  "name": "basic-ftp-implicit",
  "version": "4.6.3",
  "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/leutamo/basic-ftp-implicit.git"
  },
  "author": "Giancarlos Araya",
  "license": "MIT",
  "keywords": [
    "ftp",
    "ftps",
    "promise",
    "async",
    "await",
    "tls",
    "ipv6",
    "typescript"
  ],
  "engines": {
    "node": ">=8.0.0"
  },
  "devDependencies": {
    "@types/mocha": "8.0.3",
    "@types/node": "14.14.6",
    "@typescript-eslint/eslint-plugin": "4.6.0",
    "@typescript-eslint/parser": "4.6.0",
    "eslint": "7.12.1",
    "mocha": "8.2.0",
    "mock-fs": "4.13.0",
    "rimraf": "3.0.2",
    "typescript": "4.0.5"
  }
}
