package.json 4.92 KB
{
  "_from": "csvtojson",
  "_id": "csvtojson@2.0.3",
  "_inBundle": false,
  "_integrity": "sha1-EzLoA2NFMN+4kaLzBN8SRHE8SVg=",
  "_location": "/csvtojson",
  "_phantomChildren": {},
  "_requested": {
    "type": "tag",
    "registry": true,
    "raw": "csvtojson",
    "name": "csvtojson",
    "escapedName": "csvtojson",
    "rawSpec": "",
    "saveSpec": null,
    "fetchSpec": "latest"
  },
  "_requiredBy": [
    "#USER",
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/csvtojson/-/csvtojson-2.0.3.tgz",
  "_shasum": "1332e803634530dfb891a2f304df1244713c4958",
  "_spec": "csvtojson",
  "_where": "/home/swc/capD/backend",
  "author": {
    "name": "Keyang Xiang",
    "email": "keyang.xiang@gmail.com"
  },
  "bin": {
    "csvtojson": "./bin/csvtojson"
  },
  "browser": {
    "child_process": false,
    "fs": false
  },
  "bugs": {
    "url": "https://github.com/Keyang/node-csvtojson/issues"
  },
  "bundleDependencies": false,
  "contributors": [
    {
      "name": "Dane Petersen",
      "url": "https://github.com/thegreatsunra"
    },
    {
      "name": "Jessica Good",
      "url": "https://github.com/jessicagood"
    },
    {
      "url": "https://github.com/nbelakovski"
    },
    {
      "name": "Robert Porter",
      "url": "https://github.com/colarob"
    },
    {
      "name": "Dimitri Kennedy",
      "url": "https://github.com/roodboi"
    },
    {
      "name": "José Expósito",
      "url": "https://github.com/JoseExposito"
    },
    {
      "name": "Daniel Cohen",
      "url": "https://github.com/dcohenb"
    },
    {
      "name": "Richard Pringle",
      "url": "https://github.com/richardpringle"
    },
    {
      "name": "Bert Verhelst",
      "url": "https://github.com/bertyhell"
    },
    {
      "url": "https://github.com/jondayft"
    },
    {
      "name": "Bruce Johnson",
      "url": "https://github.com/brucejo75"
    },
    {
      "name": "Jimi Ford",
      "url": "https://github.com/JimiHFord"
    },
    {
      "name": "Alec Fenichel",
      "url": "https://github.com/fenichelar"
    },
    {
      "name": "Hocine Moukaideche",
      "url": "https://github.com/Off76"
    },
    {
      "name": "Blake Blackshear",
      "url": "https://github.com/blakeblackshear"
    },
    {
      "name": "Amila Welihinda",
      "url": "https://github.com/amilajack"
    },
    {
      "name": "Zsolt R. Molnar",
      "url": "https://github.com/molnarzs"
    },
    {
      "name": "Ionică Bizău",
      "url": "Johnny B."
    },
    {
      "name": "Keita Akutsu",
      "url": "https://github.com/kakts"
    },
    {
      "url": "https://github.com/markwithers"
    },
    {
      "name": "Trang",
      "url": "https://github.com/trangtungn"
    },
    {
      "name": "Keyang Xiang",
      "url": "https://github.com/Keyang"
    },
    {
      "name": "Jeff Johnson",
      "url": "https://github.com/jeffcjohnson"
    },
    {
      "name": "Sean Lang",
      "url": "https://github.com/slang800"
    },
    {
      "name": "Matthias Lienau",
      "url": "https://github.com/atufkas"
    },
    {
      "name": "Ron Korving",
      "url": "https://github.com/ronkorving"
    }
  ],
  "dependencies": {
    "bluebird": "^3.5.1",
    "lodash": "^4.17.3",
    "strip-bom": "^2.0.0"
  },
  "deprecated": false,
  "description": "A tool concentrating on converting csv data to JSON with customised parser supporting",
  "devDependencies": {
    "@types/bluebird": "^3.5.20",
    "@types/mocha": "^5.2.0",
    "@types/node": "^10.0.1",
    "coveralls": "^3.0.1",
    "minimist": "^1.2.0",
    "mocha": "^5.1.1",
    "nyc": "^11.7.3",
    "sinon": "^3.2.3",
    "ts-node": "^6.0.3",
    "typescript": "^2.8.3"
  },
  "engines": {
    "node": ">=4.0.0"
  },
  "homepage": "https://github.com/Keyang/node-csvtojson",
  "keywords": [
    "csv",
    "csv parser",
    "parse csv",
    "csvtojson",
    "json",
    "csv to json",
    "csv convert",
    "tojson",
    "convert csv to json",
    "csv-json"
  ],
  "license": "MIT",
  "main": "./v2/index.js",
  "name": "csvtojson",
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "include": [
      "./src/**/*.ts"
    ],
    "all": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Keyang/node-csvtojson.git"
  },
  "scripts": {
    "build": "rm -Rf ./v2 && tsc",
    "coverage": "nyc --reporter html  mocha -r ts-node/register src/**/*.test.ts ./test/*.ts -R spec",
    "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
    "dev": "tsc -w",
    "test": "TS_NODE_CACHE=false mocha -r ts-node/register src/**/*.test.ts ./test/*.ts -R spec",
    "test-all": "mocha  ./test -R spec && CSV_WORKER=3 mocha ./test -R spec ",
    "test:all:debug": "mocha debug ./testNew -R spec",
    "test:debug": "mocha debug -r ts-node/register src/**/*.test.ts ./test/*.ts -R spec",
    "test:unit": "mocha -r ts-node/register src/**/*.test.ts",
    "travis": "nyc --reporter lcov mocha -r ts-node/register src/**/*.test.ts ./test/*.ts -R spec"
  },
  "version": "2.0.3"
}