UNPKG

auth0-js

Version:

Auth0 headless browser sdk

118 lines (117 loc) 3.32 kB
{ "name": "auth0-js", "version": "9.7.3", "description": "Auth0 headless browser sdk", "author": "Auth0", "license": "MIT", "module": "dist/auth0.min.esm.js", "main": "dist/auth0.min.js", "files": [ "src", "plugins", "build", "dist" ], "keywords": [ "auth0", "auth", "openid", "authentication", "jwt", "browser" ], "engine": { "node": ">=6.9.0" }, "scripts": { "start": "rollup -c --watch", "build": "rm -rf dist && rm -rf build && rollup -c --prod && cp -rf dist build", "test": "cross-env BABEL_ENV=test mocha --require babel-register test/**/*.test.js --exit", "test:integration": "cross-env BABEL_ENV=test mocha-parallel-tests --compilers babel-register --max-parallel 2 integration/**/*.test.js", "test:watch": "npm run test -- --watch -R min", "ci:test": "cross-env BABEL_ENV=test nyc npm run test -- --forbid-only -R mocha-multi --reporter-options spec=-,mocha-junit-reporter=-", "ci:coverage": "codecov", "lint": "eslint ./src", "lint:fix": "eslint --fix ./src", "publish:cdn": "ccu", "release": "scripts/release.sh", "jsdocs": "jsdoc --configure .jsdoc.json --verbose", "precommit": "lint-staged" }, "repository": { "type": "git", "url": "git://github.com/auth0/auth0.js" }, "dependencies": { "base64-js": "^1.2.0", "idtoken-verifier": "^1.2.0", "js-cookie": "^2.2.0", "qs": "^6.4.0", "superagent": "^3.8.2", "url-join": "^1.1.0", "winchan": "^0.2.0" }, "devDependencies": { "@auth0/component-cdn-uploader": "auth0/component-cdn-uploader#v2.1.1", "babel-plugin-istanbul": "^4.1.6", "babel-preset-env": "^1.7.0", "babel-register": "^6.26.0", "codecov": "^3.0.2", "cross-env": "^5.1.6", "eslint": "^4.19.1", "eslint-config-auth0-base": "^13.1.0", "eslint-config-prettier": "^2.9.0", "eslint-plugin-compat": "^2.3.0", "eslint-plugin-import": "^2.12.0", "expect.js": "^0.2.0", "husky": "^0.13.3", "istanbul": "^0.4.5", "jsdoc": "^3.5.5", "jsdoc-to-markdown": "^2.0.1", "lint-staged": "^3.4.2", "minami": "^1.2.3", "mocha": "^5.2.0", "mocha-junit-reporter": "^1.17.0", "mocha-multi": "^1.0.1", "mocha-parallel-tests": "^2.0.2", "nyc": "^12.0.2", "prettier": "^1.13.5", "proxyquire": "^2.0.1", "rollup": "^0.60.1", "rollup-plugin-commonjs": "^9.1.3", "rollup-plugin-json": "^3.0.0", "rollup-plugin-license": "^0.6.0", "rollup-plugin-livereload": "^0.6.0", "rollup-plugin-node-resolve": "^3.3.0", "rollup-plugin-replace": "^2.0.0", "rollup-plugin-serve": "^0.4.2", "rollup-plugin-sourcemaps": "^0.4.2", "rollup-plugin-terser": "^1.0.1", "selenium-webdriver": "^3.0.1", "semver": "^5.5.0", "sinon": "^1.17.6", "yargs": "^11.0.0" }, "ccu": { "name": "auth0", "cdn": "https://cdn.auth0.com", "mainBundleFile": "auth0.min.js", "bucket": "assets.us.auth0.com", "localPath": "dist", "digest": { "hashes": [ "sha384" ], "extensions": [ ".js" ] } }, "lint-staged": { "{src,test, plugins,integration}/**/*.js": [ "npm run lint", "prettier --write --print-width 100 --single-quote", "git add" ] } }