forked from dgrubelic/vue-authenticate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 1.77 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
{
"name": "@simbachain/vue-authenticate",
"version": "1.6.1",
"description": "Authentication library for Vue.js",
"main": "dist/vue-authenticate.common.js",
"module": "dist/vue-authenticate.esm.js",
"unpkg": "dist/vue-authenticate.js",
"scripts": {
"build": "node build/build.rollup.js"
},
"keywords": [
"vue",
"vue.js",
"vuejs",
"json",
"jwt",
"token",
"auth",
"authentication",
"oauth",
"oauth1",
"oauth2"
],
"author": {
"name": "Davor Grubelic",
"email": "davor.grubelic@gmail.com",
"url": "https://dgrubelic.me"
},
"contributors": [
{
"name": "Kieran David Evans",
"email": "keyz182@gmail.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/simbachain/vue-authenticate.git"
},
"files": [
"dist",
"types/index.d.ts"
],
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.0",
"@rollup/plugin-buble": "^0.21.3",
"acorn": "^8.2.3",
"ajv": "^8.2.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-only-warn": "^1.0.2",
"rollup": "^2.47.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner": "^0.2.1",
"@rollup/plugin-eslint": "^8.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"peerDependencies": {},
"tags": [
"auth",
"authentication",
"login",
"registration",
"jwt",
"token",
"vuejs",
"vue.js",
"github",
"facebook",
"google",
"twitter",
"oauth",
"oauth 1.0",
"oauth 2.0"
],
"dependencies": {
"axios": "^0.21.4",
"crypto-js": "^4.0.0",
"qs": "^6.10.1",
"vue": "^2.6.12",
"vue-axios": "^3.2.4"
}
}