123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- {
- "name": "tcp-base",
- "version": "3.1.1",
- "description": "A base class for tcp client with basic functions",
- "main": "lib/base.js",
- "files": [
- "lib"
- ],
- "scripts": {
- "lint": "eslint --ext .js .",
- "test": "npm run lint && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run lint && npm run cov",
- "contributors": "contributors"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/node-modules/tcp-base.git"
- },
- "keywords": [
- "tcp"
- ],
- "author": "gxcsoccer <gxcsoccer@126.com>",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/node-modules/tcp-base/issues"
- },
- "homepage": "https://github.com/node-modules/tcp-base#readme",
- "engines": {
- "node": ">= 6.0.0"
- },
- "ci": {
- "version": "14, 16, 18",
- "os": "linux"
- },
- "devDependencies": {
- "contributors": "^0.5.1",
- "egg-bin": "^5.2.0",
- "egg-ci": "^2.1.0",
- "eslint": "^8.23.0",
- "eslint-config-egg": "^12.0.0",
- "mm": "^2.1.0",
- "mz-modules": "^1.0.0",
- "pedding": "^1.1.0"
- },
- "dependencies": {
- "is-type-of": "^1.0.0",
- "sdk-base": "^3.1.1"
- }
- }
|