{
  "name": "lifeid-did-jwt",
  "version": "0.0.4",
  "description": "Library for Signing and Verifying JWTs compatible lifeID and DID standards",
  "main": "lib/index.js",
  "files": [
    "lib",
    "dist",
    "src",
    "tutorial"
  ],
  "scripts": {
    "test": "jest",
    "build:es5": "./node_modules/.bin/babel src -d lib",
    "build:browser": "./node_modules/.bin/webpack --config webpack.config.js",
    "build": "yarn build:es5 && yarn build:browser",
    "build:docs:html": "./node_modules/.bin/jsdoc src/* README.md -d docs",
    "build:docs:md": "./node_modules/jsdoc-to-markdown/bin/cli.js src/* --template template.hbs --heading-depth 2 -c js2doc.conf > docs/reference/index.md; echo",
    "build:docs": "npm run build:docs:html && npm run build:docs:md",
    "prepublish": "yarn build"
  },
  "author": "Pelle Braendgaard <pelle.braendgaard@consensys.net>",
  "license": "Apache-2.0",
  "jest": {
    "coverageDirectory": "./coverage/",
    "collectCoverage": true,
    "unmockedModulePathPatterns": [
      "<rootDir>/node_modules/nock"
    ]
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-core": "^6.26.0",
    "babel-jest": "^22.4.0",
    "babel-loader": "^7.1.2",
    "babel-plugin-transform-es2015-modules-umd": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "babel-plugin-transform-runtime": "^6.23.0",
    "babel-preset-env": "^1.6.0",
    "jest": "^22.4.0",
    "jsontokens": "^0.7.7",
    "mockdate": "^2.0.2",
    "regenerator-runtime": "^0.11.1",
    "sinon": "^4.0.1",
    "standard": "^11.0.0",
    "webpack": "^3.11.0"
  },
  "dependencies": {
    "assert": "^1.4.1",
    "babel-runtime": "^6.26.0",
    "base64url": "^2.0.0",
    "buffer": "^5.1.0",
    "did-resolver": "^0.0.4",
    "elliptic": "^6.4.0",
    "ethereumjs-util": "^5.2.0",
    "js-sha256": "^0.9.0",
    "js-sha3": "^0.7.0",
    "jsdoc-to-markdown": "^4.0.1",
    "lifeid-did-resolver": "^0.0.1",
    "mnid": "^0.1.1",
    "node-fetch": "^2.1.2",
    "web3": "^1.0.0-beta.34"
  },
  "standard": {
    "ignore": [
      "lib/**"
    ],
    "globals": [
      "it",
      "describe",
      "expect",
      "jest",
      "beforeAll",
      "beforeEach",
      "afterAll",
      "afterEach"
    ]
  }
}
