{
  "name": "json-schema-ref-parser",
  "version": "5.1.3",
  "description": "Parse, Resolve, and Dereference JSON Schema $ref pointers",
  "keywords": [
    "json",
    "schema",
    "jsonschema",
    "json-schema",
    "json-pointer",
    "$ref",
    "dereference",
    "resolve"
  ],
  "author": {
    "name": "James Messinger",
    "url": "http://bigstickcarpet.com"
  },
  "contributors": [
    {
      "name": "Boris Cherny",
      "email": "boris@performancejs.com"
    }
  ],
  "license": "MIT",
  "homepage": "https://github.com/BigstickCarpet/json-schema-ref-parser",
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "scripts": {
    "lint": "eslint lib test --fix",
    "build": "npm run lint && npm run browserify",
    "browserify": "simplifyify lib/index.js --outfile dist/ref-parser.js --standalone \\$RefParser --bundle --debug --minify",
    "watch": "npm run browserify -- --watch",
    "mocha": "mocha",
    "istanbul": "istanbul cover _mocha --dir coverage/node",
    "karma": "karma start --single-run",
    "test": "npm run browserify -- --test && npm run istanbul && npm run karma",
    "upgrade": "npm-check -u",
    "bump": "bump --prompt --grep dist/* --tag --push --all",
    "release": "npm run upgrade && npm test && npm run bump && npm publish",
    "start": "npm run watch & http-server -o -c-1"
  },
  "browser": {
    "fs": false
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/BigstickCarpet/json-schema-ref-parser.git"
  },
  "devDependencies": {
    "@types/json-schema": "^7.0.0",
    "@types/node": "^10.9.1",
    "bower": "^1.8.4",
    "chai": "^4.1.2",
    "codacy-coverage": "^3.0.0",
    "coveralls": "^3.0.2",
    "eslint": "^5.4.0",
    "eslint-config-modular": "^4.1.2",
    "http-server": "^0.11.1",
    "istanbul": "^0.4.5",
    "karma": "^3.0.0",
    "karma-chrome-launcher": "^2.2.0",
    "karma-cli": "^1.0.1",
    "karma-coverage": "^1.1.2",
    "karma-edge-launcher": "^0.4.2",
    "karma-firefox-launcher": "^1.1.0",
    "karma-ie-launcher": "^1.0.0",
    "karma-mocha": "^1.3.0",
    "karma-safari-launcher": "^1.0.0",
    "karma-sauce-launcher": "^1.2.0",
    "karma-verbose-reporter": "0.0.6",
    "mocha": "^5.2.0",
    "npm-check": "^5.8.0",
    "simplifyify": "^4.0.3",
    "version-bump-prompt": "^4.1.0"
  },
  "dependencies": {
    "call-me-maybe": "^1.0.1",
    "debug": "^3.1.0",
    "js-yaml": "^3.12.0",
    "ono": "^4.0.6"
  }
}