{
  "name": "@eslib/std",
  "version": "0.0.6",
  "description": "The compact, well typed standard library for ESlib",
  "eslib": true,
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "build": "npm run clean && tsc -d && ./scripts/template.js",
    "clean": "rm -rf dist",
    "lint": "tslint .",
    "prepublish": "npm run lint && npm test",
    "pretest": "npm run build",
    "tdd": "concurrently -rk 'npm run watch' 'ava -w'",
    "test": "ava",
    "watch": "tsc -w"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/eslib/std.git"
  },
  "author": "Boris Cherny <boris@performancejs.com> (https://performancejs.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/eslib/std/issues"
  },
  "homepage": "https://github.com/eslib/std#readme",
  "devDependencies": {
    "ava": "^0.20.0",
    "concurrently": "^3.5.0",
    "lodash": "^4.17.4",
    "tslint": "^5.5.0",
    "typescript": "^2.4.1"
  },
  "dependencies": {
    "eslib": "^0.2.2"
  },
  "ava": {
    "files": [
      "dist/test/**/*.js"
    ],
    "source": [
      "dist/src/**/*.js"
    ]
  }
}
