-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "first-open-port",
"version": "0.1.2",
"description": "find the first open port on localhost within a range of specified ports",
"main": "index.js",
"dependencies": {
"bluebird": "3.3.4"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"co-mocha": "1.1.2",
"coffee-script": "1.10.0",
"istanbul": "0.4.3",
"mocha": "2.4.5"
},
"scripts": {
"cr": "npm run cover -s && npm run report -s",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"md": "pm2 start pen",
"report": "istanbul report text",
"test": "mocha",
"test-ci": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codekirei/first-open-port.git"
},
"keywords": [
"find",
"open",
"port",
"server"
],
"author": "Jacob Blakely (codekirei)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codekirei/first-open-port/issues"
},
"homepage": "https://github.com/codekirei/first-open-port#readme"
}