@delewis13/appauth
Version:
A general purpose OAuth client. Vendored awaiting PR merge
73 lines (72 loc) • 2.55 kB
JSON
{
"name": "@delewis13/appauth",
"version": "1.3.5",
"description": "A general purpose OAuth client. Vendored awaiting PR merge",
"author": "The OpenID Foundation",
"license": "Apache-2.0",
"repository": "openid/AppAuth-JS",
"bugs": {
"url": "https://github.com/openid/AppAuth-JS/issues"
},
"files": [
"src/**",
"app/**",
"built/**"
],
"main": "built/index.js",
"types": "built/index.d.ts",
"scripts": {
"preapp": "npm run-script --silent watch",
"app": "node_modules/.bin/watchify built/app/index.js -o built/app/bundle.js & http-server -p 8000",
"prenode-app": "npm run-script --silent compile",
"node-app": "node ./built/node_app/index.js",
"prebuild-app": "npm run-script --silent compile",
"build-app": "node_modules/.bin/browserify built/app/index.js -o built/app/bundle.js",
"preminify": "npm run-script --silent build-app",
"minify": "java -jar node_modules/google-closure-compiler/compiler.jar --js built/app/bundle.js --js_output_file built/app/bundle_minified.js",
"precompile": "npm run-script --silent clean && npm run-script --silent format",
"compile": "node_modules/.bin/tsc",
"prepare": "npm run-script --silent build-app",
"format": "node_modules/.bin/clang-format -i -style=file --glob=src/**.ts",
"clean": "rm -rf built",
"pretest": "npm run-script --silent compile",
"test": "node_modules/.bin/karma start karma.conf --browsers=Chrome --single-run=false --debug",
"pregzipSize": "npm run-script --silent minify",
"gzipSize": "gzip -c built/app/bundle_minified.js | wc -c",
"prewatch": "npm run-script --silent format",
"watch": "node_modules/.bin/tsc --watch &"
},
"keywords": [
"OAuth",
"AppAuth",
"JavaScript",
"Node"
],
"devDependencies": {
"@types/hapi": "^18.0.3",
"@types/jasmine": "^3.5.14",
"@types/node": "^14.6.3",
"@types/opener": "^1.4.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"browserify": "^16.5.2",
"clang-format": "^1.4.0",
"google-closure-compiler": "^20200830.0.0",
"http-server": "^0.12.3",
"jasmine-core": "^3.6.0",
"karma": "^5.2.1",
"karma-browserify": "^7.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"typescript": "^4.0.2",
"watchify": "^3.11.1"
},
"dependencies": {
"@types/base64-js": "^1.3.0",
"@types/jquery": "^3.5.1",
"base64-js": "^1.3.1",
"follow-redirects": "^1.13.0",
"form-data": "^3.0.0",
"opener": "^1.5.2"
}
}