forked from okta/okta-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.32 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
{
"private": true,
"name": "@okta/okta-vue",
"version": "2.1.1",
"description": "Vue support for Okta",
"main": "dist/bundles/okta-vue.umd.js",
"files": [
"bundles",
"src"
],
"scripts": {
"banners": "util/maintain-banners.js",
"build": "node build.js",
"lint": "eslint --ext .js,.vue .",
"prepare": "yarn build",
"start": "yarn --cwd e2e/harness/ start",
"test": "yarn lint && yarn test:unit && yarn test:e2e",
"test:e2e": "yarn --cwd e2e/harness/ test",
"test:unit": "jest"
},
"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": {
"@okta/configuration-validation": "^0.4.1",
"@okta/okta-auth-js": "^3.2.3",
"cross-env": "^5.1.1",
"vue": "^2.5.17",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.12",
"autoprefixer": "^7.1.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^23.0.0-alpha.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"chalk": "2.4.2",
"dotenv": "^8.1.0",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-friendly-formatter": "^3.0.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-html": "^3.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^23.6.0",
"lerna": "^2.11.0",
"rimraf": "^2.6.2",
"shelljs": "0.8.3",
"uglifyjs-webpack-plugin": "^1.1.1",
"url-loader": "^1.1.1",
"vue-jest": "^2.1.1",
"vue-loader": "15.4.2",
"vue-style-loader": "^3.0.1",
"vue-template-compiler": "^2.5.2",
"wait-for-expect": "^3.0.0",
"webpack": "^4.20.0",
"webpack-cli": "^3.1.2"
},
"engines": {
"node": ">= 4.0.0",
"yarn": ">= 1.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"workspaces": [
"e2e/harness"
]
}