{
  "name": "rcktship",
  "version": "1.0.6",
  "description": "A lightweight library the runs an arbitrary series of shell commands on both local and remote hosts.",
  "scripts": {
    "start": "npm run clean && npm run watch-ts",
    "clean": "./node_modules/.bin/rimraf dist",
    "build-ts": "./node_modules/.bin/tsc --pretty",
    "watch-ts": "./node_modules/.bin/tsc --watch --pretty",
    "test": "./node_modules/.bin/jest",
    "watch-test": "./node_modules/.bin/jest --watch",
    "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "travis-test": "npm test && npm run coveralls",
    "npm-publish": "npm run clean && npm run build-ts && npm publish"
  },
  "main": "./dist/index.js",
  "bin": {
    "rocket": "./bin/rocket.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jerkeeler/rcktship.git"
  },
  "keywords": [
    "deploy",
    "deployment",
    "ssh",
    "remote",
    "executer",
    "task",
    "runner",
    "fabric",
    "commands",
    "dispatch",
    "launch",
    "rockets",
    "ships",
    "rocketships"
  ],
  "author": "Jeremy Keeler",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/jerkeeler/rcktship/issues"
  },
  "homepage": "https://github.com/jerkeeler/rcktship#readme",
  "dependencies": {
    "chalk": "^4.0.0",
    "debug": "^4.1.1",
    "interpret": "^2.0.0",
    "liftoff": "^3.1.0",
    "nopt": "^4.0.3",
    "ssh2": "^0.8.9",
    "v8flags": "^3.1.3"
  },
  "devDependencies": {
    "@types/commander": "^2.12.2",
    "@types/debug": "^4.1.5",
    "@types/jest": "^25.2.1",
    "@types/node": "^13.11.1",
    "@types/ssh2": "^0.5.43",
    "coveralls": "^3.0.11",
    "jest": "^25.3.0",
    "rimraf": "^3.0.2",
    "ts-jest": "^25.3.1",
    "tslint": "^6.1.1",
    "typescript": "^3.8.3"
  },
  "jest": {
    "collectCoverage": true,
    "transform": {
      "^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json"
    ]
  }
}
