{
  "name": "veendor",
  "version": "3.1.1",
  "description": "a tool for stroing your npm dependencies in arbitraty storage",
  "bin": {
    "veendor": "bin/veendor.js"
  },
  "scripts": {
    "build": "npm run build:1_tsc && npm run build:2_tscpaths && npm run build:3_tests_dirs && npm run build:4_tests_files && npm run build:5_package.json",
    "build:1_tsc": "./node_modules/.bin/tsc",
    "build:2_tscpaths": "./node_modules/.bin/tscpaths -p tsconfig.json -s src -o dist",
    "build:3_tests_dirs": "find src/test/integration -type d |perl -pe 's/^src\\///' | xargs -I{} -n1 mkdir -p \"dist/{}\"",
    "build:4_tests_files": "find src/test/integration -type f \\( ! -name \"*.ts\" \\) |perl -pe 's/^src\\///' | xargs -I{} -n1 cp \"src/{}\" \"dist/{}\"",
    "build:5_package.json": "cp package.json dist/ && cp .npmrc dist/ && cp .npmignore dist/",
    "test": "npm run test:unit && npm run test:integration",
    "test:unit": "mocha --file dist/test/setup.js --reporter dot 'dist/test/unit/**/*.test.js'",
    "test:integration": "mocha --file dist/test/setup.js --reporter dot 'dist/test/integration/**/*.test.js'",
    "publish": "npm run build && npm run test && cd dist && npm publish --access=public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/mutantcornholio/veendor"
  },
  "author": "cornholio <0@mcornholio.ru>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/mutantcornholio/veendor/issues"
  },
  "homepage": "https://github.com/mutantcornholio/veendor",
  "dependencies": {
    "@types/fs-extra": "^5.0.4",
    "aws-sdk": "^2.213.1",
    "cli-progress": "^2.1.0",
    "colors": "^1.3.1",
    "commander": "^2.16.0",
    "deep-object-diff": "^1.0.4",
    "fs-extra": "^4.0.0",
    "lodash": "^4.14.1",
    "semver": "^5.5.0",
    "tracer": "^0.9.1"
  },
  "devDependencies": {
    "@types/chai": "^4.2.7",
    "@types/chai-as-promised": "^7.1.2",
    "@types/cli-progress": "^1.8.0",
    "@types/invariant": "^2.2.31",
    "@types/lodash": "^4.14.116",
    "@types/mocha": "^5.2.7",
    "@types/mock-fs": "^4.10.0",
    "@types/node": "^10.5.8",
    "@types/progress": "^2.0.1",
    "@types/s3rver": "0.0.32",
    "@types/semver": "^5.5.0",
    "@types/sinon": "^7.5.1",
    "chai": "^3.5.0",
    "chai-as-promised": "^6.0.0",
    "invariant": "^2.2.4",
    "mocha": "^5.2.0",
    "mock-fs": "^4.9.0",
    "mock-require": "^1.3.0",
    "nock": "^11.7.2",
    "s3rver": "^2.2.3",
    "sinon": "^4.5.0",
    "ts-node": "^8.6.1",
    "ts-sinon": "^1.0.24",
    "tsc-watch": "^4.0.0",
    "tscpaths": "0.0.9",
    "typescript": "^3.7.4"
  }
}
