{
  "name": "ios-uploader",
  "version": "3.0.3",
  "description": "Easy to use, cross-platform tool to upload an iOS app to itunes-connect.",
  "keywords": [
    "ipa",
    "upload",
    "ios"
  ],
  "homepage": "https://github.com/simonnilsson/ios-uploader#readme",
  "repository": "https://github.com/simonnilsson/ios-uploader",
  "author": "Simon Nilsson <simon@nilsson.ml>",
  "license": "MIT",
  "main": "./lib/index.js",
  "bin": {
    "ios-uploader": "./bin/cli.js"
  },
  "scripts": {
    "start": "node bin/cli.js",
    "build": "pkg --out-path build --compress Brotli .",
    "lint": "eslint --max-warnings 0 ./bin/*.js ./lib/*.js",
    "fix": "eslint --fix ./bin/*.js ./lib/*.js",
    "test": "nyc --reporter=text mocha",
    "coverage": "nyc --reporter=lcov mocha"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "async": "^3.2.6",
    "axios": "^0.30.0",
    "cli-progress": "^3.12.0",
    "commander": "^13.1.0",
    "concat-stream": "^2.0.0",
    "pretty-bytes": "^5.6.0",
    "simple-plist": "^1.3.1",
    "yauzl": "^3.2.0"
  },
  "devDependencies": {
    "@stylistic/eslint-plugin": "^4.2.0",
    "@yao-pkg/pkg": "^6.4.0",
    "eslint": "^9.25.0",
    "eslint-plugin-jsdoc": "^50.6.9",
    "mocha": "^11.1.0",
    "nock": "^14.0.4",
    "nyc": "^17.1.0",
    "sinon": "^20.0.0"
  },
  "files": [
    "assets/",
    "bin/",
    "lib/"
  ],
  "pkg": {
    "scripts": [
      "./bin/**/*.js",
      "./lib/**/*.js"
    ],
    "assets": "./assets/**/*",
    "targets": [
      "node18-win-x64",
      "node18-macos-x64",
      "node18-linux-x64",
      "node18-alpine-x64"
    ]
  }
}