{
  "author": "Auth",
  "name": "@upbond/auth-spa-js",
  "description": "Auth SDK for Single Page Applications using Authorization Code Grant Flow with PKCE",
  "license": "MIT",
  "version": "0.0.10",
  "main": "dist/lib/upbond-auth-spa-js.cjs.js",
  "types": "dist/typings/index.d.ts",
  "module": "dist/upbond-auth-spa-js.production.esm.js",
  "scripts": {
    "dev": "rimraf dist && rollup -c --watch",
    "start": "npm run dev",
    "docs": "typedoc --options ./typedoc.js --module commonjs",
    "build": "rimraf dist && rollup -m -c --environment NODE_ENV:production && npm run test:es-check",
    "build:stats": "npm run build -- --environment WITH_STATS:true && open stats.html",
    "lint:security": "eslint ./src --ext ts --no-eslintrc --config ./.eslintrc.security",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "test:watch:integration": "concurrently --raw npm:dev 'cypress open'",
    "test:es-check": "npm run test:es-check:es5 && npm run test:es-check:es2015:module",
    "test:es-check:es5": "es-check es5 'dist/upbond-auth-spa-js.production.js'",
    "test:es-check:es2015:module": "es-check es2015 --module 'dist/upbond-auth-spa-js.production.esm.js'",
    "test:integration:server": "cp static/index.html dist/index.html && serve ./dist/ -p 3000 -n",
    "test:integration:tests": "wait-on http://localhost:3000/ && cypress run",
    "test:integration": "concurrently --raw --kill-others --success first npm:test:integration:server npm:test:integration:tests",
    "print-bundle-size": "node ./scripts/print-bundle-size",
    "prepack": "npm run build && node ./scripts/prepack",
    "release": "node ./scripts/release",
    "release:clean": "node ./scripts/cleanup",
    "publish:cdn": "ccu --trace"
  },
  "devDependencies": {
    "@rollup/plugin-replace": "^2.3.1",
    "@types/cypress": "^1.1.3",
    "@types/jest": "^24.9.1",
    "@typescript-eslint/eslint-plugin-tslint": "^2.27.0",
    "@typescript-eslint/parser": "^2.27.0",
    "cli-table": "^0.3.1",
    "concurrently": "^5.1.0",
    "cypress": "^4.3.0",
    "es-check": "^5.1.0",
    "eslint": "^6.8.0",
    "gzip-size": "^5.1.1",
    "husky": "^4.2.3",
    "idtoken-verifier": "^2.0.2",
    "jest": "^24.9.0",
    "jest-localstorage-mock": "^2.4.0",
    "jsonwebtoken": "^8.5.1",
    "pem": "^1.14.4",
    "prettier": "^2.0.4",
    "pretty-quick": "^2.0.1",
    "qss": "^2.0.3",
    "rimraf": "^3.0.2",
    "rollup": "^2.3.3",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-livereload": "^1.1.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-serve": "^1.0.1",
    "rollup-plugin-sourcemaps": "^0.5.0",
    "rollup-plugin-terser": "^5.3.0",
    "rollup-plugin-typescript2": "^0.27.0",
    "rollup-plugin-visualizer": "^4.0.3",
    "rollup-plugin-web-worker-loader": "^1.1.3",
    "serve": "^11.3.0",
    "ts-jest": "^24.3.0",
    "tslint": "^6.1.1",
    "tslint-config-security": "^1.16.0",
    "typedoc": "^0.17.4",
    "typescript": "^3.8.3",
    "wait-on": "^4.0.1"
  },
  "dependencies": {
    "abortcontroller-polyfill": "^1.4.0",
    "browser-tabs-lock": "^1.2.8",
    "core-js": "^3.6.4",
    "es-cookie": "^1.3.2",
    "fast-text-encoding": "^1.0.1",
    "promise-polyfill": "^8.1.3",
    "unfetch": "^4.1.0"
  },
  "files": [
    "src",
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/upbond/auth-spa-js.git"
  },
  "bugs": {
    "url": "https://github.com/upbond/auth-spa-js/issues"
  },
  "homepage": "https://github.com/upbond/upbond-auth-spa-js#readme",
  "keywords": [
    "upbond",
    "login",
    "Authorization Code Grant Flow",
    "PKCE",
    "Single Page Application authentication",
    "SPA authentication"
  ]
}
