-
Notifications
You must be signed in to change notification settings - Fork 250
/
package.json
71 lines (71 loc) · 1.38 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
{
"name": "vue-authenticate",
"version": "1.5.0",
"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": "[email protected]",
"url": "https://dgrubelic.me"
},
"repository": {
"type": "git",
"url": "https://github.com/dgrubelic/vue-authenticate.git"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@rollup/plugin-buble": "^0.21.3",
"acorn": "^6.1.1",
"ajv": "^6.10.0",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-uglify": "^6.0.4",
"uglify-js": "^3.9.1"
},
"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.18.0",
"vue": "^2.6.10",
"vue-axios": "^2.1.4"
}
}