-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "appauthhelper",
"version": "0.5.1",
"description": "Wrapper for AppAuthJS to assist with silent token acquisition and renewal",
"main": "appAuthHelper.js",
"scripts": {
"pretest": "eslint .",
"build-appAuthHelper": "browserify --s AppAuthHelper -o appAuthHelperBundle.js appAuthHelper$BABEL_ENV.js && babel --out-file appAuthHelperBundle.js appAuthHelperBundle.js && cp copyrights.js appAuthHelperBundleTmp.js && cat appAuthHelperBundle.js >> appAuthHelperBundleTmp.js && mv appAuthHelperBundleTmp.js appAuthHelperBundle.js",
"build-appAuthHelperFetchTokens": "browserify -o appAuthHelperFetchTokensBundle.js appAuthHelperFetchTokens$BABEL_ENV.js && babel --out-file appAuthHelperFetchTokensBundle.js appAuthHelperFetchTokensBundle.js && cp copyrights.js appAuthHelperFetchTokensBundleTmp.js && cat appAuthHelperFetchTokensBundle.js >> appAuthHelperFetchTokensBundleTmp.js && mv appAuthHelperFetchTokensBundleTmp.js appAuthHelperFetchTokensBundle.js",
"build-appAuthServiceWorker": "browserify -o appAuthServiceWorker.js appAuthServiceWorkerCore.js && babel --out-file appAuthServiceWorker.js appAuthServiceWorker.js && cp copyrights.js appAuthServiceWorkerTmp.js && cat appAuthServiceWorker.js >> appAuthServiceWorkerTmp.js && mv appAuthServiceWorkerTmp.js appAuthServiceWorker.js",
"build": "npm run build-appAuthHelper && npm run build-appAuthHelperFetchTokens && npm run build-appAuthServiceWorker",
"build-compat": "BABEL_ENV=Compat npm run build && cp compat-copyrights.js appAuthHelperBundleTmp.js && cat appAuthHelperBundle.js >> appAuthHelperBundleTmp.js && mv appAuthHelperBundleTmp.js appAuthHelperBundle.js && cp compat-copyrights.js appAuthHelperFetchTokensBundleTmp.js && cat appAuthHelperFetchTokensBundle.js >> appAuthHelperFetchTokensBundleTmp.js && mv appAuthHelperFetchTokensBundleTmp.js appAuthHelperFetchTokensBundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ForgeRock/appAuthHelper.git"
},
"keywords": [
"oidc"
],
"author": "Jake Feasel",
"license": "Apache 2.0",
"dependencies": {
"@openid/appauth": "^1.2.8",
"promise-polyfill": "8.1.3",
"url-polyfill": "^1.1.10",
"webcrypto-shim": "^0.1.6",
"whatwg-fetch": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-preset-minify": "^0.5.1",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"browserify-header": "^1.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}