-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.12 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
{
"name": "@byuweb/browser-oauth-implicit",
"version": "1.3.1",
"description": "Implicit grant provider for BYU browser oauth",
"main": "dist/implicit-grant.js",
"repository": "[email protected]:byuweb/byu-browser-oauth-implicit.git",
"author": "BYU Office of Information Technology",
"contributors": [
"Glen Sawyer <[email protected]>",
"Joseph Moore <[email protected]>",
"Blake Morgan <[email protected]>"
],
"license": "Apache-2.0",
"private": true,
"scripts": {
"build": "rollup -c",
"start:rollup": "rollup -c --watch",
"start:server": "live-server --host=localhost --port=8080 --open=demo.html --watch=dist",
"start": "npm-run-all -p start:*",
"test": "karma start --single-run",
"watch-test": "karma start --browsers ChromeHeadless"
},
"dependencies": {
"@byuweb/browser-oauth": "^0.4.0",
"local-storage-fallback": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-preset-modern-browsers": "^14.0.0",
"buble": "^0.19.8",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"karma": "^4.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-detect-browsers": "^2.3.2",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-opera-launcher": "^1.0.0",
"karma-rollup-preprocessor": "^7.0.2",
"karma-safari-launcher": "^1.0.0",
"karma-safaritechpreview-launcher": "^2.0.2",
"karma-sinon": "^1.0.5",
"live-server": "^1.2.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.3",
"rollup": "^1.19.3",
"rollup-plugin-analyzer": "^3.1.2",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.0",
"sinon": "^7.4.1",
"sinon-chai": "^3.0.0",
"url-polyfill": "^1.1.7",
"url-search-params": "^1.1.0",
"whatwg-url": "^7.0.0"
}
}