{
  "name": "azure-iot-provisioning-device-http",
  "version": "1.9.1",
  "description": "HTTP transport for Azure Device Provisioning SDK",
  "author": "Microsoft Corporation",
  "license": "MIT",
  "main": "index.js",
  "typings": "index.d.ts",
  "dependencies": {
    "async": "^3.2.3",
    "es5-ext": "0.10.53",
    "azure-iot-common": "1.13.1",
    "azure-iot-http-base": "1.12.1",
    "azure-iot-provisioning-device": "1.9.1",
    "debug": "^4.3.1",
    "machina": "^4.0.2"
  },
  "devDependencies": {
    "@types/node": "^16.10.2",
    "chai": "^4.3.3",
    "mocha": "^9.2.1",
    "nyc": "^15.0.0",
    "sinon": "^11.1.2",
    "source-map-support": "^0.5.16",
    "ts-node": "^8.6.2",
    "tslint": "^6.1.3",
    "typescript": "4.4.4"
  },
  "scripts": {
    "npmlockrefresh": "npm i --package-lock-only",
    "lint": "tslint --project . -c ../../../tslint.json",
    "build": "tsc",
    "unittest-min": "tsc && nyc --reporter lcov ../../../node_modules/mocha/bin/_mocha --reporter dot",
    "alltest-min": "tsc && nyc --reporter lcov ../../../node_modules/mocha/bin/_mocha --reporter dot test/_*_test*.js",
    "unittest": "tsc && nyc --reporter lcov --reporter text ../../../node_modules/mocha/bin/_mocha",
    "alltest": "tsc && nyc --reporter lcov --reporter text ../../../node_modules/mocha/bin/_mocha test/_*_test*.js",
    "ci": "npm -s run lint && npm -s run build && npm -s run alltest-min",
    "test": "npm -s run lint && npm -s run build && npm -s run alltest"
  },
  "nyc": {
    "exclude": [
      "coverage/**",
      "**/*.d.ts",
      "test{,s}/**",
      "test{,-*}.{js,cjs,mjs,ts}",
      "**/*{.,-}test.{js,cjs,mjs,ts}",
      "**/__tests__/**",
      "**/{ava,nyc}.config.{js,cjs,mjs}",
      "**/jest.config.{js,cjs,mjs,ts}",
      "**/{karma,rollup,webpack}.config.js",
      "**/{babel.config,.eslintrc,.mocharc}.{js,cjs}"
    ],
    "extension": [
      ".ts",
      ".tsx"
    ],
    "check-coverage": true,
    "lines": 97,
    "functions": 100,
    "branches": 90,
    "statements": 97
  },
  "mocha": {
    "require": [
      "ts-node/register",
      "source-map-support/register"
    ],
    "full-trace": true,
    "bail": true,
    "spec": "test/**/_*_test.js"
  },
  "engines": {
    "node": ">= 14.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Azure/azure-iot-sdk-node.git"
  },
  "bugs": {
    "url": "https://github.com/Azure/azure-iot-sdk-node/issues"
  },
  "homepage": "https://github.com/Azure/azure-iot-sdk-node#readme"
}