12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "tcp-proxy.js",
- "version": "1.3.0",
- "description": "simple tcp proxy",
- "dependencies": {
- "debug": "^3.0.1",
- "through2": "^2.0.3"
- },
- "devDependencies": {
- "autod": "^2.8.0",
- "co": "^4.6.0",
- "egg-bin": "^3.4.0",
- "egg-ci": "^1.7.0",
- "eslint": "^4.0.0",
- "eslint-config-egg": "^4.2.0",
- "urllib": "^2.24.0",
- "webstorm-disable-index": "^1.2.0"
- },
- "engines": {
- "node": ">=6.0.0"
- },
- "scripts": {
- "autod": "autod",
- "lint": "eslint .",
- "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
- "pkgfiles": "egg-bin pkgfiles"
- },
- "ci": {
- "version": "6, 8"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/whxaxes/tcp-proxy.js.git"
- },
- "bugs": {
- "url": "https://github.com/whxaxes/tcp-proxy.js/issues"
- },
- "homepage": "https://github.com/whxaxes/tcp-proxy.js#readme",
- "publishConfig": {
- "registry": "https://registry.npmjs.org/"
- },
- "files": [
- "index.js"
- ],
- "author": "wanghx",
- "license": "MIT",
- "main": "index.js",
- "keywords": [
- "tcp",
- "proxy"
- ]
- }
|