forked from soukoku/vue-oidc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.88 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
{
"name": "vue-oidc-client",
"version": "0.2.9",
"description": "Wrapper around oidc-client-js to to better work in a vue application with router integration.",
"author": "Eugene Wang",
"license": "MIT",
"main": "dist/VueOidcAuth.umd.min.js",
"unpkg": "dist/VueOidcAuth.umd.min.js",
"jsdelivr": "dist/VueOidcAuth.umd.min.js",
"typings": "typings/index.d.ts",
"files": [
"dist/VueOidcAuth*",
"src/*.js",
"typings/*.d.ts"
],
"keywords": [
"vue",
"openid-connect",
"oidc",
"oidc-client"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/soukoku/vue-oidc-client.git"
},
"bugs": {
"url": "https://github.com/soukoku/vue-oidc-client/issues"
},
"homepage": "https://github.com/soukoku/vue-oidc-client",
"scripts": {
"serve": "yarn && cd sample && yarn && vue-cli-service serve",
"build": "vue-cli-service build --target lib --name VueOidcAuth src/VueOidcAuth.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"oidc-client": "^1.6.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.4.1",
"@vue/cli-plugin-eslint": "^3.4.1",
"@vue/cli-service": "^3.4.1",
"lint-staged": "^8.1.5",
"vue": "^2.6.8",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.6.8"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}