{
  "name": "@vscode/js-debug-browsers",
  "version": "1.1.2",
  "description": "Browser launch and discovery logic used in VS Code's JavaScript Debugger",
  "main": "dist/index.js",
  "scripts": {
    "prepack": "npm run compile",
    "compile": "rimraf dist && tsc",
    "watch": "rimraf dist && tsc --watch",
    "test": "npm run test:unit && npm run test:lint && npm run test:fmt",
    "test:unit": "mocha \"dist/**/*.test.js\"",
    "test:lint": "eslint \"src/**/*.ts\"",
    "test:fmt": "prettier --list-different \"src/**/*.ts\"",
    "fmt": "prettier --write \"src/**/*.ts\"&& npm run test:lint -- --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/microsoft/vscode-js-debug-browsers.git"
  },
  "keywords": [
    "vscode",
    "js-debug",
    "chrome",
    "edge"
  ],
  "author": "Connor Peet <connor@peet.io>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/microsoft/vscode-js-debug-browsers/issues"
  },
  "homepage": "https://github.com/microsoft/vscode-js-debug-browsers#readme",
  "prettier": {
    "trailingComma": "all",
    "singleQuote": true,
    "printWidth": 100,
    "tabWidth": 2
  },
  "devDependencies": {
    "@types/chai": "^4.3.0",
    "@types/mocha": "^9.0.0",
    "@types/node": "^17.0.5",
    "@types/sinon": "^10.0.6",
    "@typescript-eslint/eslint-plugin": "^5.8.1",
    "@typescript-eslint/parser": "^5.8.1",
    "chai": "^4.3.4",
    "eslint": "^8.5.0",
    "eslint-plugin-header": "^3.1.1",
    "mocha": "^9.1.3",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "sinon": "^12.0.1",
    "typescript": "^4.5.4"
  },
  "dependencies": {
    "execa": "^4.0.0"
  }
}
