{
  "name": "coreapi",
  "version": "0.1.1",
  "description": "Javascript client library for Core API",
  "main": "lib/index.js",
  "scripts": {
    "build": "mkdir -p dist && browserify --standalone coreapi -d -t babelify lib/index.js -o dist/coreapi.js",
    "watch": "watchify --standalone coreapi -t babelify lib/index.js -o dist/coreapi.js -v",
    "prepublish": "npm run build",
    "jest": "jest",
    "test": "standard && jest --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:core-api/javascript-client.git"
  },
  "keywords": [
    "API",
    "REST",
    "Hypermedia"
  ],
  "author": "Tom Christie <tom@tomchristie.com> (https://twitter.com/_tomchristie)",
  "license": "BSD-2-Clause",
  "bugs": {
    "url": "https://github.com/core-api/javascript-client/issues"
  },
  "standard": {
    "globals": [
      "describe",
      "expect",
      "it",
      "xit",
      "jest"
    ]
  },
  "jest": {
    "testPathIgnorePatterns": [
      "<rootDir>/node_modules/",
      "<rootDir>/tests/__helpers__/"
    ],
    "testRegex": "/tests/.*\\.(ts|tsx|js)$"
  },
  "dependencies": {
    "isomorphic-fetch": "^2.2.1",
    "url-parse": "^1.1.7",
    "url-template": "^2.0.8"
  },
  "devDependencies": {
    "babel-jest": "^18.0.0",
    "babel-preset-es2015": "^6.18.0",
    "babelify": "^7.3.0",
    "browserify": "^13.3.0",
    "jest": "^18.1.0",
    "standard": "^8.6.0",
    "watchify": "^3.8.0"
  }
}
