{
  "name": "data-forge-beta",
  "version": "1.6.7",
  "description": "JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "scripts": {
    "c": "npm run clean",
    "clean": "rm -rf build && rm -rf dist",
    "b": "npm run build",
    "build": "tsc",
    "cb": "npm run clean-build",
    "clean-build": "npm run clean && npm run build",
    "bw": "tsc --watch",
    "build:watch": "tsc --watch",
    "cbw": "npm run clean-build:watch",
    "clean-build:watch": "npm run clean-build && npm run build:watch",
    "t": "npm run test",
    "test": "mocha --opts ./src/test/mocha.opts",
    "tw": "npm run test:watch",
    "test:watch": "nyc mocha --watch --opts ./src/test/mocha.opts",
    "api-docs": "typedoc --options typedoc.json --out docs/api ./src/index.ts ./src/lib/dataframe.ts ./src/lib/series.ts ./src/lib/index.ts",
    "prepublishOnly": "npm run clean && npm run test && npm run build && npm run pack:node",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "pn": "npm run pack:node",
    "pack:node": "webpack --config webpack.node.config.js && npm run bundle-typedefs",
    "bundle-typedefs": "dts-bundle --name data-forge --main build/index.d.ts --baseDir = build --out ../dist/node/index.d.ts"  
},
  "repository": {
    "type": "git",
    "url": "https://github.com/data-forge/data-forge-ts.git"
  },
  "keywords": [
    "data-wrangling",
    "data-forge",
    "data",
    "data-analysis",
    "linq",
    "pandas",
    "Python",
    "visualization",
    "data-visualization",
    "data-management",
    "data-manipulation",
    "csv",
    "json",
    "data-munging",
    "data-cleaning",
    "data-science",
    "data-clensing"
  ],
  "author": "ashley@codecapers.com.au",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/data-forge/data-forge-ts/issues"
  },
  "homepage": "https://github.com/data-forge/data-forge-ts#readme",
  "dependencies": {
  },
  "devDependencies": {
    "chai": "4.1.2",
    "easy-table": "1.1.0",
    "lodash": "^4.17.11",
    "mock-require": "2.0.2",
    "moment": "2.22.1",
    "numeral": "^2.0.6",
    "papaparse": "4.4.0",
    "statman-stopwatch": "2.7.0",
    "sugar": "2.0.4",
    "@types/chai": "4.0.4",
    "@types/mocha": "2.2.43",
    "@types/mock-require": "2.0.0",
    "@types/node": "8.0.28",
    "@types/numeral": "0.0.22",
    "coveralls": "3.0.1",
    "dts-bundle": "^0.7.3",
    "mocha": "3.5.3",
    "nyc": "11.7.3",
    "source-map-support": "0.5.6",
    "ts-loader": "^5.3.3",
    "ts-node": "6.0.2",
    "typedoc": "^0.11.1",
    "typescript": "2.8.3",
    "webpack": "^4.29.6",
    "webpack-cli": "^3.3.0",
    "webpack-node-externals": "^1.7.2"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "**/*.d.ts",
      "src/lib/iterators/**/*",
      "src/lib/iterables/**/*",
      "src/test/**/*",
      "build/**/*",
      "docs/**/*",
      "coverage/**/*"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "all": true
  }
}
