{
  "name": "jsxapi",
  "version": "6.0.0",
  "description": "JavaScript bindings for XAPI",
  "author": {
    "name": "Martin Øinæs Myrseth",
    "email": "mmyrseth@cisco.com"
  },
  "license": "MIT",
  "engines": {
    "node": ">=8.x",
    "npm": ">=5.x"
  },
  "main": "lib/index.js",
  "browser": "lib/browser.js",
  "types": "lib/index.d.ts",
  "bin": {
    "jsxapi": "./lib/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:cisco-ce/jsxapi.git"
  },
  "scripts": {
    "build": "run-s build:js build:**",
    "build:dist:min": "parcel build --global jsxapi -o jsxapi.min.js ./src/browser.ts",
    "build:dist": "parcel build --no-minify --global jsxapi -o jsxapi.js ./src/browser.ts",
    "build:docs": "typedoc --tsconfig src/tsconfig.json --entryPointStrategy expand --out docs src",
    "build:js": "(cd src; tsc)",
    "clean": "rimraf docs lib",
    "lint": "tslint \"src/**/*.ts\"",
    "prepare": "npm run build",
    "prepublishOnly": "npm test",
    "start": "node ./lib/cli.js",
    "test": "npm run lint && npm run jest",
    "jest": "jest",
    "tdd": "jest --watch",
    "version": "node ./bump-version.js && npm run build && git add -u",
    "watch": "(cd src; tsc --watch)"
  },
  "dependencies": {
    "@types/events": "^3.0.0",
    "buffer": "^6.0.3",
    "commander": "^10.0.1",
    "core-js": "^3.30.2",
    "duplex-passthrough": "^1.0.2",
    "duplexer": "^0.1.2",
    "events": "^3.3.0",
    "jsonparse": "^1.3.1",
    "loglevel": "^1.8.1",
    "redent": "^3.0.0",
    "ssh2": "^1.13.0",
    "url-parse": "^1.5.10",
    "ws": "^8.18.0",
    "xdg-basedir": "^4.0.0",
    "xml-escape": "^1.1.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.1",
    "@types/ssh2": "^1.11.11",
    "@types/url-parse": "^1.4.8",
    "@types/ws": "^8.5.13",
    "jest": "^29.5.0",
    "json-loader": "^0.5.4",
    "npm-run-all": "^4.1.5",
    "parcel-bundler": "^1.12.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.4.0",
    "tslint": "^6.1.3",
    "typedoc": "^0.22.7",
    "typescript": "^4.4.4"
  }
}
