{
  "name": "@funkia/list",
  "version": "0.0.1",
  "description": "",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "build": "tsc -P tsconfig-build.json",
    "test": "nyc mocha --recursive test/**/*.ts",
    "test-watch": "mocha -R progress --watch --compilers ts:ts-node/register test/**/*.ts",
    "codecov": "codecov -f coverage/coverage-final.json",
    "bench": "node bench"
  },
  "author": "Simon Friis Vindum",
  "license": "MIT",
  "devDependencies": {
    "@types/chai": "4.0.1",
    "@types/mocha": "2.2.41",
    "chai": "4.0.2",
    "mocha": "3.4.2",
    "ts-node": "3.1.0",
    "typescript": "2.4.1",
    "codecov": "2.2.0",
    "nyc": "11.0.3"
  },
  "nyc": {
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register",
      "source-map-support/register"
    ],
    "reporter": [
      "json",
      "html",
      "text"
    ]
  }
}