123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {
- "name": "tunnel-ssh",
- "version": "4.1.4",
- "description": "Easy extendable SSH tunnel",
- "main": "index.js",
- "scripts": {
- "test": "mocha && eslint ."
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/agebrock/tunnel-ssh"
- },
- "keywords": [
- "tunnel",
- "ssh",
- "mysql",
- "develop",
- "net"
- ],
- "author": {
- "name": "Christoph Hagenbrock",
- "email": "christoph.hagenbrock@googlemail.com"
- },
- "license": "MIT",
- "dependencies": {
- "debug": "2.6.9",
- "lodash.defaults": "^4.1.0",
- "ssh2": "0.5.4"
- },
- "devDependencies": {
- "chai": "3.5.0",
- "eslint": "^3.2.2",
- "eslint-config-xo": "^0.17.0",
- "mocha": "^3.5.3"
- },
- "eslintConfig": {
- "extends": "xo",
- "env": {
- "mocha": true
- },
- "rules": {
- "indent": [
- "error",
- 4
- ]
- }
- }
- }
|