package.json 712 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "portfinder",
  3. "description": "A simple tool to find an open port on the current machine",
  4. "version": "1.0.32",
  5. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  6. "repository": {
  7. "type": "git",
  8. "url": "git@github.com:http-party/node-portfinder.git"
  9. },
  10. "keywords": [
  11. "http",
  12. "ports",
  13. "utilities"
  14. ],
  15. "files": [
  16. "lib"
  17. ],
  18. "dependencies": {
  19. "async": "^2.6.4",
  20. "debug": "^3.2.7",
  21. "mkdirp": "^0.5.6"
  22. },
  23. "devDependencies": {
  24. "vows": "^0.8.3"
  25. },
  26. "main": "./lib/portfinder",
  27. "types": "./lib/portfinder.d.ts",
  28. "scripts": {
  29. "test": "vows test/*-test.js --spec"
  30. },
  31. "engines": {
  32. "node": ">= 0.12.0"
  33. },
  34. "license": "MIT"
  35. }