UNPKG

nestjs-ftp

Version:

Nestjs-ftp is a NestJs Module repository of basic-ftp package

94 lines (93 loc) 2.54 kB
{ "name": "nestjs-ftp", "version": "0.1.13", "description": "Nestjs-ftp is a NestJs Module repository of basic-ftp package", "author": "Abdessalem Letaief", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/AbdessalemLetaief/nestjs-ftp" }, "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "*.md" ], "keywords": [ "ftp", "ftps", "promise", "async", "await", "tls", "ipv6", "typescript", "NestJs" ], "homepage": "https://github.com/AbdessalemLetaief/nestjs-ftp#readme", "scripts": { "prebuild": "rimraf dist", "build": "rimraf dist && tsc -p tsconfig.build.json", "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"", "start": "nest start", "start:dev": "nest start --watch", "start:debug": "nest start --debug --watch", "start:prod": "node dist/main", "lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:e2e": "jest --config ./test/jest-e2e.json" }, "dependencies": { "@nestjs/common": "^7.0.0", "@nestjs/core": "^7.6.13", "@nestjs/platform-express": "^7.6.13", "basic-ftp": "^4.6.3", "reflect-metadata": "^0.1.13", "rimraf": "^3.0.2", "rxjs": "^6.6.6" }, "devDependencies": { "@nestjs/cli": "^7.5.6", "@nestjs/schematics": "^7.2.7", "@nestjs/testing": "^7.6.13", "@types/express": "^4.17.11", "@types/jest": "^26.0.20", "@types/node": "^14.14.31", "@types/supertest": "^2.0.10", "@typescript-eslint/eslint-plugin": "^4.15.2", "@typescript-eslint/parser": "^4.15.2", "eslint": "^7.20.0", "eslint-config-prettier": "^8.1.0", "eslint-plugin-prettier": "^3.3.1", "jest": "^26.6.3", "prettier": "^2.2.1", "supertest": "^6.1.3", "ts-jest": "^26.5.2", "ts-loader": "^8.0.17", "ts-node": "^9.1.1", "tsconfig-paths": "^3.9.0", "typescript": "^4.1.5", "semantic-release": "^17.4.2" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "testRegex": ".*\\.spec\\.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "collectCoverageFrom": [ "**/*.(t|j)s" ], "coverageDirectory": "../coverage", "testEnvironment": "node" } }