-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
120 lines (120 loc) · 3.56 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@openziti/ziti-browzer-runtime",
"version": "0.97.1",
"type": "module",
"description": "The Ziti JavaScript runtime that is auto-injected into the Page of a Zitified web app",
"scripts": {
"prebuild": "node scripts/prebuild.js",
"build": "npm-run-all build:clean rollup",
"build:clean": "rimraf lib dist",
"rollup": "rollup -c ./rollup.config.js",
"build:lib-delete": "babel --config-file ./.lib.babelrc src --out-dir lib",
"build:dist-delete": "npm-run-all browserify minify",
"browserify-delete": "browserify lib/ziti-browzer-runtime.js -o dist/ziti-browzer-runtime.js -s ZitiBrowzerRuntime.js",
"minify-delete": "terser --compress --mangle -o dist/ziti-browzer-runtime.min.js dist/ziti-browzer-runtime.js",
"test": "npm-run-all coverage coverage-report",
"test-mocha": "cross-env NODE_ENV=test mocha -t 30000 -R ${REPORTER:-spec} tests/unit/index.js",
"test-karma": "karma start",
"coverage": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm run test-mocha",
"coverage-report": "nyc report"
},
"nyc": {
"exclude": [
"tests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/openziti/ziti-browzer-runtime.git"
},
"keywords": [
"ziti",
"js",
"javascript",
"zero trust",
"zero-trust",
"browZer",
"browser"
],
"author": "NetFoundry",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/openziti/ziti-browzer-runtime/issues"
},
"homepage": "https://github.com/openziti/ziti-browzer-runtime#readme",
"lint-staged": {
"linters": {
"*.js": [
"xo --fix",
"git add"
],
"*.md": [
"remark . -qfo",
"git add"
],
"package.json": [
"fixpack",
"git add"
]
}
},
"main": "./dist/index.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.17.10",
"@babel/plugin-transform-regenerator": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.17.7",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/localforage": "^0.0.34",
"babel-plugin-transform-runtime": "^6.23.0",
"browserify": "^17.0.0",
"cross-env": "^7.0.3",
"mocha": "^10.0.0",
"mocha-lcov-reporter": "^1.3.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"rollup": "^2.75.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-esformatter": "^2.0.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-prettier": "^2.2.2",
"rollup-plugin-terser": "^7.0.2",
"tinyify": "^3.0.0"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.0.4",
"@azure/msal-browser": "^2.38.0",
"@babel/runtime": "^7.17.9",
"@openziti/ziti-browzer-core": "^0.51.1",
"bowser": "^2.11.0",
"cookie-interceptor": "^1.0.0",
"core-js": "^3.22.8",
"events": "^3.3.0",
"js-base64": "^3.7.2",
"jwt-decode": "^3.1.2",
"licia": "^1.39.2",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"luna-modal": "^1.2.3",
"luna-notification": "^0.2.0",
"luna-setting": "^1.0.1",
"luna-tab": "^0.3.0",
"oauth4webapi": "^2.10.3",
"rollup-plugin-css-only": "^4.5.2",
"uplot": "^1.6.24",
"uuid": "^8.3.2",
"wasm-feature-detect": "^1.8.0",
"workbox-window": "^6.5.3"
}
}