{
  "name": "exec-appx",
  "version": "0.1.4",
  "description": "Executes a Windows Store application (Appx)",
  "license": "MIT",
  "scripts": {
    "fix": "eslint --fix ./src",
    "lint:json": "jsonlint --quiet ./*.json",
    "lint:js": "eslint ./src",
    "lint": "npm-run-all --parallel lint:*",
    "precommit": "npm run test",
    "test": "eslint index.js"
  },
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/idleberg/node-exec-appx.git"
  },
  "keywords": [
    "appx",
    "windows store",
    "windows store app",
    "microsoft store",
    "universal windows platform"
  ],
  "dependencies": {
    "get-appx-path": "^0.2.2"
  },
  "devDependencies": {
    "eslint": "^7.18.0",
    "eslint-plugin-json": "^2.1.2",
    "husky": "^4.3.8",
    "jsonlint": "^1.6.3",
    "lint-staged": "^10.5.3",
    "npm-run-all": "^4.1.5"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.json": "jsonlint --quiet",
    "*.js": "eslint --cache --fix"
  }
}
