{
  "_args": [
    [
      "jsonld@5.2.0",
      "C:\\dev\\git\\react-native-vc-js"
    ]
  ],
  "_from": "jsonld@5.2.0",
  "_id": "jsonld@5.2.0",
  "_inBundle": false,
  "_integrity": "sha512-JymgT6Xzk5CHEmHuEyvoTNviEPxv6ihLWSPu1gFdtjSAyM6cFqNrv02yS/SIur3BBIkCf0HjizRc24d8/FfQKw==",
  "_location": "/jsonld",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "jsonld@5.2.0",
    "name": "jsonld",
    "escapedName": "jsonld",
    "rawSpec": "5.2.0",
    "saveSpec": null,
    "fetchSpec": "5.2.0"
  },
  "_requiredBy": [
    "/",
    "/@digitalbazaar/ed25519-signature-2018",
    "/jsonld-signatures"
  ],
  "_resolved": "https://registry.npmjs.org/jsonld/-/jsonld-5.2.0.tgz",
  "_spec": "5.2.0",
  "_where": "C:\\dev\\git\\react-native-vc-js",
  "author": {
    "name": "Digital Bazaar, Inc.",
    "email": "support@digitalbazaar.com",
    "url": "https://digitalbazaar.com/"
  },
  "browser": {
    "./lib/index.js": "./lib/jsonld.js",
    "./lib/platform.js": "./lib/platform-browser.js",
    "crypto": false,
    "http": false,
    "jsonld-request": false,
    "request": false,
    "url": false,
    "util": false
  },
  "bugs": {
    "url": "https://github.com/digitalbazaar/jsonld.js/issues",
    "email": "support@digitalbazaar.com"
  },
  "contributors": [
    {
      "name": "Dave Longley",
      "email": "dlongley@digitalbazaar.com"
    },
    {
      "name": "David I. Lehn",
      "email": "dlehn@digitalbazaar.com"
    }
  ],
  "dependencies": {
    "@digitalbazaar/http-client": "^1.1.0",
    "canonicalize": "^1.0.1",
    "lru-cache": "^6.0.0",
    "rdf-canonize": "^3.0.0"
  },
  "description": "A JSON-LD Processor and API implementation in JavaScript.",
  "devDependencies": {
    "@babel/core": "^7.13.14",
    "@babel/plugin-proposal-object-rest-spread": "^7.13.8",
    "@babel/plugin-transform-modules-commonjs": "^7.13.8",
    "@babel/plugin-transform-runtime": "^7.13.10",
    "@babel/preset-env": "^7.13.12",
    "@babel/runtime": "^7.13.10",
    "babel-loader": "^8.2.2",
    "benchmark": "^2.1.4",
    "browserify": "^17.0.0",
    "chai": "^4.3.4",
    "core-js": "^3.10.0",
    "cors": "^2.7.1",
    "cross-env": "^7.0.3",
    "envify": "^4.1.0",
    "eslint": "^7.23.0",
    "eslint-config-digitalbazaar": "^2.6.1",
    "esmify": "^2.1.1",
    "express": "^4.16.4",
    "fs-extra": "^9.1.0",
    "join-path-js": "0.0.0",
    "karma": "^5.2.3",
    "karma-babel-preprocessor": "^8.0.1",
    "karma-browserify": "^8.0.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-edge-launcher": "^0.4.2",
    "karma-firefox-launcher": "^2.1.0",
    "karma-ie-launcher": "^1.0.0",
    "karma-mocha": "^2.0.1",
    "karma-mocha-reporter": "^2.2.5",
    "karma-safari-launcher": "^1.0.0",
    "karma-server-side": "^1.7.0",
    "karma-sourcemap-loader": "^0.3.7",
    "karma-tap-reporter": "0.0.6",
    "karma-webpack": "^4.0.2",
    "mocha": "^8.3.2",
    "mocha-lcov-reporter": "^1.3.0",
    "nyc": "^15.1.0",
    "watchify": "^3.11.1",
    "webpack": "^4.46.0",
    "webpack-cli": "^4.5.0",
    "webpack-merge": "^5.7.3"
  },
  "engines": {
    "node": ">=12"
  },
  "files": [
    "dist/*.js",
    "dist/*.js.map",
    "lib/*.js",
    "lib/**/*.js"
  ],
  "homepage": "https://github.com/digitalbazaar/jsonld.js",
  "keywords": [
    "JSON",
    "JSON-LD",
    "Linked Data",
    "RDF",
    "Semantic Web",
    "jsonld"
  ],
  "license": "BSD-3-Clause",
  "main": "lib/index.js",
  "name": "jsonld",
  "nyc": {
    "exclude": [
      "lib/documentLoaders/xhr.js",
      "tests"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/digitalbazaar/jsonld.js.git"
  },
  "scripts": {
    "build": "npm run build-webpack",
    "build-webpack": "webpack",
    "coverage": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text-summary npm test",
    "coverage-ci": "cross-env NODE_ENV=test nyc --reporter=lcovonly npm run test",
    "coverage-report": "nyc report",
    "fetch-json-ld-api-test-suite": "if [ ! -e test-suites/json-wg-api ]; then git clone --depth 1 https://github.com/w3c/json-ld-api.git test-suites/json-ld-api; fi",
    "fetch-json-ld-framing-test-suite": "if [ ! -e test-suites/json-wg-framing ]; then git clone --depth 1 https://github.com/w3c/json-ld-framing.git test-suites/json-ld-framing; fi",
    "fetch-json-ld-org-test-suite": "if [ ! -e test-suites/json-ld.org ]; then git clone --depth 1 https://github.com/json-ld/json-ld.org.git test-suites/json-ld.org; fi",
    "fetch-json-ld-wg-test-suite": "npm run fetch-json-ld-api-test-suite && npm run fetch-json-ld-framing-test-suite",
    "fetch-normalization-test-suite": "if [ ! -e test-suites/normalization ]; then git clone --depth 1 https://github.com/json-ld/normalization.git test-suites/normalization; fi",
    "fetch-test-suites": "npm run fetch-json-ld-wg-test-suite && npm run fetch-json-ld-org-test-suite && npm run fetch-normalization-test-suite",
    "lint": "eslint *.js lib/**.js tests/**.js",
    "prepublish": "npm run build",
    "test": "npm run test-node",
    "test-karma": "cross-env NODE_ENV=test karma start",
    "test-node": "cross-env NODE_ENV=test mocha --delay -t 30000 -A -R ${REPORTER:-spec} tests/test.js"
  },
  "version": "5.2.0"
}
