-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
72 lines (72 loc) · 2.47 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@openid/appauth",
"version": "1.3.2",
"description": "A general purpose OAuth client.",
"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.14",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.12.7",
"@types/opener": "^1.4.3",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"browserify": "^17.0.0",
"clang-format": "^1.8.0",
"google-closure-compiler": "^20240317.0.0",
"http-server": "^14.1.1",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"karma-browserify": "^8.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"typescript": "^5.4.5",
"watchify": "^4.0.0"
},
"dependencies": {
"@types/base64-js": "^1.3.2",
"@types/jquery": "^3.5.29",
"base64-js": "^1.5.1",
"follow-redirects": "^1.15.6",
"form-data": "^4.0.0",
"opener": "^1.5.2"
}
}