-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
128 lines (128 loc) · 3.54 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
121
122
123
124
125
126
127
128
{
"private": true,
"name": "@okta/okta-vue",
"version": "5.8.0",
"description": "Vue support for Okta",
"main": "dist/bundles/okta-vue.cjs.js",
"module": "dist/bundles/okta-vue.esm.js",
"types": "dist/bundles/types/index.d.ts",
"files": [
"bundles",
"src"
],
"scripts": {
"banners": "util/maintain-banners.js",
"build": "node build.js",
"lint": "eslint --ext .js,.vue,.ts .",
"lint:report": "eslint -f checkstyle -o ./test-reports/lint/eslint-checkstyle-result.xml --ext .js,.vue,.ts .",
"prepare": "yarn build",
"start": "yarn --cwd test/app start",
"test": "yarn lint && yarn test:unit",
"test:e2e": "yarn workspace @okta/test.e2e-wdio test",
"test:unit": "jest",
"bundle": "rollup -c rollup.config.js",
"dev": "yarn bundle --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okta/okta-vue.git"
},
"keywords": [
"oauth2"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/okta/okta-vue/issues"
},
"homepage": "https://github.com/okta/okta-vue#readme",
"dependencies": {
"@babel/runtime": "^7.12.5",
"compare-versions": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@okta/okta-auth-js": "^7.9.0",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/compiler-sfc": "^3.2.31",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-beta.14",
"@vue/vue3-jest": "^29.2.4",
"babel-jest": "^27.5.1",
"chalk": "2.4.2",
"eslint": "^7.15.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^7.2.0",
"globby": "^11.0.1",
"jest": "^27.5.1",
"jest-junit": "^13.0.0",
"rimraf": "^2.6.2",
"rollup": "^2.33.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"rollup-plugin-vue": "^6.0.0-beta.11",
"shelljs": "0.8.5",
"ts-jest": "^27.1.4",
"typescript": "^4.1.2",
"vue": "^3.2.31",
"vue-eslint-parser": "^7.3.0",
"vue-router": "^4.0.14",
"vue-template-compiler": "^2.6.12",
"wait-for-expect": "^3.0.0",
"webdriver-manager": "^12.1.9"
},
"peerDependencies": {
"@okta/okta-auth-js": "^5.8.0 || ^6.0.0 || ^7.0.0",
"vue": "^3.0.0",
"vue-router": "^4.0.3"
},
"resolutions": {
"core-js": "^3.39.0",
"**/request/qs": "^6.10.3",
"ua-parser-js": "^1.0.33",
"glob-parent": "^6.0.2",
"**/lighthouse-logger/debug": "^3.1.0",
"**/babel-traverse/debug": "^3.1.0"
},
"jest-junit": {
"outputDirectory": "./test-reports/unit/",
"outputName": "junit-result.xml"
},
"engines": {
"node": ">= 4.0.0",
"yarn": ">= 1.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"workspaces": {
"packages": [
"./",
"test/apps/*",
"test/e2e",
"test/e2e-wdio",
"env"
],
"nohoist": [
"**/@wdio/**"
]
}
}