UNPKG

1.31 kBJSONView Raw
1{
2 "name": "@gasbuddy/tcp-pool",
3 "version": "2.0.0",
4 "description": "A generic pool of TCP connections with a parsing class for handling incoming and outgoing messages",
5 "main": "build/index.js",
6 "scripts": {
7 "test": "tap --node-arg=--require --node-arg=babel-register tests/*.js",
8 "test-some": "tap --node-arg=--require --node-arg=babel-register",
9 "cover": "nyc --reporter=lcov npm test",
10 "lint": "eslint .",
11 "prepublish": "npm run build",
12 "build": "babel src --out-dir build"
13 },
14 "repository": {
15 "type": "git",
16 "url": "git+https://github.com/gas-buddy/tcp-pool.git"
17 },
18 "bugs": {
19 "url": "https://github.com/gas-buddy/tcp-pool/issues"
20 },
21 "engines": {
22 "node": ">=8.9"
23 },
24 "homepage": "https://github.com/gas-buddy/tcp-pool#readme",
25 "keywords": [
26 "tcp",
27 "gasbuddy",
28 "pool"
29 ],
30 "dependencies": {
31 "babel-runtime": "^6.26.0",
32 "generic-pool": "^3.2.0",
33 "winston": "^2.4.0"
34 },
35 "devDependencies": {
36 "babel-cli": "^6.24.1",
37 "babel-core": "^6.24.1",
38 "babel-preset-gasbuddy": "^3.1.0",
39 "babel-register": "^6.24.1",
40 "bluebird": "^3.5.0",
41 "cross-env": "^5.1.1",
42 "eslint-config-gasbuddy": "^4",
43 "ssl-root-cas": "^1.2.3",
44 "tap": "^10.3.3"
45 },
46 "author": "GasBuddy",
47 "license": "MIT"
48}