{
  "_from": "angular-datatables@^8.1.0",
  "_id": "angular-datatables@8.1.0",
  "_inBundle": false,
  "_integrity": "sha512-UJmF8qLdxIALyabwslvMvJ8zjkJWIfn/IfzEKO1vv6z+DhwfHlTS7oFOF40x0ZbSGfq0E1Yyscl7MOl71AulHw==",
  "_location": "/angular-datatables",
  "_phantomChildren": {
    "@angular-devkit/architect": "0.803.29",
    "@angular-devkit/core": "8.3.29",
    "@angular-devkit/schematics": "8.3.29",
    "@schematics/angular": "8.3.29",
    "@schematics/update": "0.803.29",
    "@yarnpkg/lockfile": "1.1.0",
    "ansi-colors": "4.1.1",
    "debug": "4.3.1",
    "ini": "1.3.5",
    "inquirer": "6.5.1",
    "npm-package-arg": "6.1.0",
    "npm-pick-manifest": "3.0.2",
    "open": "6.4.0",
    "pacote": "9.5.5",
    "read-package-tree": "5.3.1",
    "rimraf": "3.0.0",
    "semver": "6.3.0",
    "symbol-observable": "1.2.0",
    "universal-analytics": "0.4.23",
    "uuid": "3.4.0"
  },
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "angular-datatables@^8.1.0",
    "name": "angular-datatables",
    "escapedName": "angular-datatables",
    "rawSpec": "^8.1.0",
    "saveSpec": null,
    "fetchSpec": "^8.1.0"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/angular-datatables/-/angular-datatables-8.1.0.tgz",
  "_shasum": "793cd45d3475e31cfb05360695bb47bdc1bfb5d7",
  "_spec": "angular-datatables@^8.1.0",
  "_where": "C:\\xampp\\htdocs\\dial-digit",
  "author": {
    "name": "Louis LIN",
    "email": "louis.lin.87@gmail.com",
    "url": "https://l-lin.github.io/"
  },
  "bugs": {
    "url": "https://github.com/l-lin/angular-datatables/issues"
  },
  "bundleDependencies": false,
  "contributors": [
    {
      "name": "Michael Bennett",
      "email": "michael@strukt.org"
    },
    {
      "name": "Steven Masala",
      "email": "me@smasalai.com"
    }
  ],
  "dependencies": {
    "@angular/cli": "^8.0.2"
  },
  "deprecated": false,
  "description": "Angular directive for DataTables",
  "devDependencies": {
    "@angular-devkit/core": "^9.0.5",
    "@angular-devkit/schematics": "^9.0.5",
    "@angular/common": "^8.0.0",
    "@angular/compiler": "^8.0.0",
    "@angular/compiler-cli": "^8.0.0",
    "@angular/core": "^8.0.0",
    "@angular/platform-browser": "^8.0.0",
    "@angular/platform-browser-dynamic": "^8.0.0",
    "@types/datatables.net": "~1.10.17",
    "@types/jasmine": "~3.3.13",
    "@types/jquery": "~3.3.29",
    "@types/node": "~12.0.7",
    "canonical-path": "1.0.0",
    "codelyzer": "^5.1.0",
    "concat-cli": "~4.0.0",
    "concurrently": "^4.1.0",
    "core-js": "^3.1.3",
    "datatables.net": "^1.10.19",
    "jasmine-core": "~3.4.0",
    "jquery": "^3.4.1",
    "karma": "~4.1.0",
    "karma-chrome-launcher": "~2.2.0",
    "karma-cli": "~2.0.0",
    "karma-htmlfile-reporter": "^0.3.8",
    "karma-jasmine": "~2.0.1",
    "protractor": "~5.4.2",
    "rimraf": "~2.6.3",
    "rollup": "~1.15.0",
    "rollup-plugin-uglify": "~6.0.2",
    "rxjs": "^6.5.2",
    "schematics-utilities": "^2.0.1",
    "tslint": "~5.17.0",
    "typescript": "~3.4.5",
    "zone.js": "~0.9.1"
  },
  "engines": {
    "node": ">=8.9.0"
  },
  "homepage": "https://github.com/l-lin/angular-datatables#readme",
  "keywords": [
    "Angular",
    "DataTables"
  ],
  "license": "MIT",
  "main": "bundles/angular-datatables.umd.js",
  "module_ivy_ngcc": "__ivy_ngcc__/index.js",
  "module": "index.js",
  "name": "angular-datatables",
  "peerDependencies": {
    "@angular/common": "^8.0.0",
    "@angular/compiler": "^8.0.0",
    "@angular/core": "^8.0.0",
    "@angular/platform-browser": "^8.0.0",
    "@angular/platform-browser-dynamic": "^8.0.0",
    "core-js": "^3.1.3",
    "datatables.net": "^1.10.19",
    "jquery": ">=3.4.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/l-lin/angular-datatables.git"
  },
  "schematics": "./schematics/src/collection.json",
  "scripts": {
    "build": "npm run clean && npm run compile && npm run bundles && npm run schematics:build",
    "bundles": "npm run rollup && npm run rollup:min",
    "clean": "rimraf -f index.{d.ts,js,js.map,metadata.json} src/*.{d.ts,js,map,metadata.json} bundles schematics/**/*.{d.ts,js,map}",
    "compile": "npm run lint:code && ngc -p tsconfig-build.json",
    "compile:tsc": "npm run lint && tsc -p tsconfig.json",
    "lint": "npm run lint:code && npm run lint:test",
    "lint:code": "tslint ./src/**/*.ts -t verbose --exclude ./src/**/*.d.ts",
    "lint:test": "tslint ./test/**/*.ts -t verbose --exclude ./test/**/*.d.ts",
    "rollup": "rollup -c rollup.conf.js",
    "rollup:min": "rollup -c rollup-uglify.conf.js",
    "schematics:build": "tsc -p schematics/tsconfig.json",
    "prepublishOnly": "node --eval \"console.error('ERROR: Trying to publish a package that has been compiled by NGCC. This is not allowed.\\nPlease delete and rebuild the package, without compiling with NGCC, before attempting to publish.\\nNote that NGCC may have been run by importing this package into another project that is being built with Ivy enabled.\\n')\" && exit 1"
  },
  "typings": "index.d.ts",
  "version": "8.1.0",
  "__processed_by_ivy_ngcc__": {
    "module": "12.0.0-next.1",
    "typings": "12.0.0-next.1"
  }
}
