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