package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "node-scp",
  3. "title": "SCP module for NodeJS",
  4. "description": "Lightweight, fast and secure SCP function for NodeJS",
  5. "version": "0.0.15",
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "license": "MIT",
  9. "licenseFilename": "LICENSE",
  10. "readmeFilename": "README.md",
  11. "author": {
  12. "name": "Mai Trung Duc",
  13. "email": "maitrungduc1410@gmail.com"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/maitrungduc1410/node-scp-async.git",
  18. "baseUrl": "https://github.com/maitrungduc1410/node-scp-async"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/maitrungduc1410/node-scp-async/issues"
  22. },
  23. "homepage": "https://github.com/maitrungduc1410/node-scp-async",
  24. "keywords": [
  25. "node scp",
  26. "node scp async",
  27. "node-scp",
  28. "node-scp-async",
  29. "scp node",
  30. "scp nodejs"
  31. ],
  32. "scripts": {
  33. "watch": "tsc -w",
  34. "build": "tsc",
  35. "release": "standard-version"
  36. },
  37. "dependencies": {
  38. "ssh2": "^1.1.0"
  39. },
  40. "devDependencies": {
  41. "@commitlint/cli": "^12.1.4",
  42. "@commitlint/config-conventional": "^12.1.4",
  43. "@types/node": "^16.0.1",
  44. "@types/ssh2": "^0.5.47",
  45. "husky": "^7.0.1",
  46. "standard-version": "^9.3.0",
  47. "typescript": "^4.3.5"
  48. }
  49. }