2019-01-29 12:28:37 -08:00
|
|
|
{
|
2019-02-14 14:01:09 -08:00
|
|
|
"name": "@uci-utils/ssh",
|
|
|
|
"version": "0.0.4",
|
|
|
|
"description": "ssh client cli and api, a wrapper on ssh2",
|
|
|
|
"main": "src/ssh.js",
|
2019-02-02 18:02:04 -08:00
|
|
|
"bin": {
|
|
|
|
"ssh": "./bin/ssh.js"
|
|
|
|
},
|
2019-01-29 12:28:37 -08:00
|
|
|
"scripts": {
|
2019-02-02 18:02:04 -08:00
|
|
|
"ssh": "node -r esm ./bin/ssh",
|
2019-02-14 14:01:09 -08:00
|
|
|
"testd": "UCI_ENV=dev ./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha -r esm --timeout 30000'",
|
|
|
|
"test": "UCI_ENV=pro UCI_LOG_PATH=./test/test.log ./node_modules/.bin/mocha -r esm --timeout 30000 || exit 0",
|
2019-01-29 12:28:37 -08:00
|
|
|
"testibc": "istanbul cover ./node_modules/.bin/_mocha test/ --report lcovonly -- -R spec --recursive && codecov || true"
|
|
|
|
},
|
|
|
|
"author": "David Kebler",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-02-14 14:01:09 -08:00
|
|
|
"url": "git+https://github.com/uCOMmandIt/uci-ssh.git"
|
2019-01-29 12:28:37 -08:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"node.js",
|
|
|
|
"I2C",
|
|
|
|
"raspberryPi"
|
|
|
|
],
|
|
|
|
"bugs": {
|
2019-02-14 14:01:09 -08:00
|
|
|
"url": "https://github.com/uCOMmandIt/uci-ssh/issues"
|
2019-01-29 12:28:37 -08:00
|
|
|
},
|
2019-02-14 14:01:09 -08:00
|
|
|
"homepage": "https://github.com/uCOMmandIt/uci-ssh#readme",
|
2019-01-29 12:28:37 -08:00
|
|
|
"dependencies": {
|
2019-02-14 14:01:09 -08:00
|
|
|
"@uci-utils/logger": "0.0.13",
|
2019-01-30 20:13:54 -08:00
|
|
|
"await-to-js": "^2.1.1",
|
2019-02-02 18:02:04 -08:00
|
|
|
"conf": "^2.2.0",
|
2019-02-14 14:01:09 -08:00
|
|
|
"esm": "^3.2.4",
|
2019-02-02 18:02:04 -08:00
|
|
|
"fs-read-data": "^1.0.4",
|
|
|
|
"ssh2": "^0.8.2",
|
2019-02-14 14:01:09 -08:00
|
|
|
"yargs": "^13.1.0"
|
2019-01-29 12:28:37 -08:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"chai": "^4.2.0",
|
2019-02-02 18:02:04 -08:00
|
|
|
"chai-arrays": "^2.0.0",
|
2019-01-29 12:28:37 -08:00
|
|
|
"codecov": "^3.1.0",
|
|
|
|
"istanbul": "^0.4.5",
|
2019-01-30 20:13:54 -08:00
|
|
|
"mocha": "^5.x",
|
2019-02-02 18:02:04 -08:00
|
|
|
"nodemon": "^1.18.9"
|
2019-01-29 12:28:37 -08:00
|
|
|
}
|
|
|
|
}
|