{
  "_from": "angular2-csv",
  "_id": "angular2-csv@0.2.5",
  "_inBundle": false,
  "_integrity": "sha1-gXn0OS7VxitAQ7+Bnjv8Huir+PM=",
  "_location": "/angular2-csv",
  "_phantomChildren": {},
  "_requested": {
    "escapedName": "angular2-csv",
    "fetchSpec": "latest",
    "name": "angular2-csv",
    "raw": "angular2-csv",
    "rawSpec": "",
    "registry": true,
    "saveSpec": null,
    "type": "tag"
  },
  "_requiredBy": [
    "#USER",
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/angular2-csv/-/angular2-csv-0.2.5.tgz",
  "_shasum": "8179f4392ed5c62b4043bf819e3bfc1ee8abf8f3",
  "_spec": "angular2-csv",
  "_where": "/home/parthi/Projects/Petro_Project_4/Petro",
  "author": {
    "name": "javiertelioz"
  },
  "bugs": {
    "url": "https://github.com/javiertelioz/angular2-csv/issues"
  },
  "bundleDependencies": false,
  "dependencies": {},
  "deprecated": false,
  "description": "Helper library for create CSV file in Angular 2",
  "devDependencies": {
    "@angular/common": "^2.4.2||^4.0.0",
    "@angular/core": "^2.4.2||^4.0.0",
    "@angular/http": "^2.4.2||^4.0.0",
    "@angular/platform-browser": "^2.4.2||^4.0.0",
    "@types/jasmine": "^2.5.46",
    "@types/js-base64": "^2.1.3",
    "awesome-typescript-loader": "^3.1.2",
    "core-js": "^2.3.0",
    "es6-shim": "^0.35.3",
    "jasmine-core": "^2.4.1",
    "karma": "^1.5.0",
    "karma-chrome-launcher": "^2.0.0",
    "karma-jasmine": "^1.0.2",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-webpack": "^2.0.3",
    "phantomjs-prebuilt": "^2.1.7",
    "reflect-metadata": "^0.1.10",
    "rxjs": "^5.0.0",
    "typescript": "~2.1.5",
    "webpack": "^2.3.1",
    "zone.js": "~0.7.2||~0.8.5"
  },
  "email": "jtelio118@gmail.com",
  "homepage": "https://github.com/javiertelioz/angular2-csv#readme",
  "keywords": [
    "angular-2",
    "angular2",
    "csv",
    "excel",
    "export-to-csv",
    "export-to-excel",
    "libreoffice",
    "openoffice"
  ],
  "license": "MIT",
  "main": "Angular2-csv.js",
  "name": "angular2-csv",
  "optionalDependencies": {},
  "peerDependencies": {
    "@angular/core": "^2.0.0||^4.0.0",
    "@angular/http": "^2.0.0||^4.0.0",
    "rxjs": "^5.0.0"
  },
  "readme": "# Angular2-csv | Export to CSV  in Angular2\n\n> Helper library for create CSV file in Angular2\n> \n\n## Installation\n\n```javascript\nnpm install --save angular2-csv\n```\n\n## Example\n```javascript\n\nimport { Angular2Csv } from 'angular2-csv/Angular2-csv';\n\nvar data = [\n  {\n    name: \"Test 1\",\n    age: 13,\n    average: 8.2,\n    approved: true,\n    description: \"using 'Content here, content here' \"\n  },\n  {\n    name: 'Test 2',\n    age: 11,\n    average: 8.2,\n    approved: true,\n    description: \"using 'Content here, content here' \"\n  },\n  {\n    name: 'Test 4',\n    age: 10,\n    average: 8.2,\n    approved: true,\n    description: \"using 'Content here, content here' \"\n  },\n];\n\nnew Angular2Csv(data, 'My Report');\n\n```\n\n## API | **Angular2Csv(data, filename, options)**\n\n\n| Option        | Default           | Description  |\n| :------------- |:-------------:| -----|\n| **fieldSeparator**      | , | Defines the field separator character |\n| **quoteStrings**      | \"      | If provided, will use this characters to \"escape\" fields, otherwise will use double quotes as deafult |\n| **decimalseparator** | .      | Defines the decimal separator character (default is .). If set to \"locale\", it uses the [language sensitive representation of the number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toLocaleString).|\n| **showLabels** | false      | If provided, would use this attribute to create a header row |\n| **showTitle** | false      |   |\n| **useBom** | true      | If true, adds a BOM character at the start of the CSV |\n\n\n**Example**\n---\n\n```javascript\n  var options = { \n    fieldSeparator: ',',\n    quoteStrings: '\"',\n    decimalseparator: '.',\n    showLabels: true, \n    showTitle: true,\n    useBom: true\n  };\n\n  Angular2Csv(data, filename, options);\n\n```\n#Credits\n---\n\n|                |\n| :------------- |\n| **[sn123](https://github.com/sn123)** |\n| **[arf1980](https://github.com/arf1980)** |\n",
  "readmeFilename": "README.md",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/javiertelioz/angular2-csv.git"
  },
  "scripts": {
    "dev": "tsc --watch",
    "prepublish": "tsc",
    "test": "karma start"
  },
  "typings": "./Angular2-csv.d.ts",
  "version": "0.2.5"
}
