forked from dgrubelic/vue-authenticate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.26 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": "vue-authenticate",
"version": "1.4.1",
"description": "Authentication library for Vue.js",
"main": "dist/vue-authenticate.min.js",
"module": "dist/vue-authenticate.es2015.js",
"unpkg": "dist/vue-authenticate.js",
"scripts": {
"dev": "concurrently --kill-others \"node-dev ./example/server.js\" \"gulp dev\"",
"build": "node build/build.js && cp ./dist/vue-authenticate.js ./example/"
},
"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.4.3",
"@babel/preset-env": "^7.4.3",
"babel-loader": "^8.0.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"body-parser": "^1.17.1",
"concurrently": "^4.1.0",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.16.4",
"gulp": "3.9.1",
"gulp-connect": "^5.7.0",
"gulp-webpack": "^1.5.0",
"node-dev": "^3.1.3",
"oauth": "^0.9.15",
"oauth-signature": "^1.3.1",
"request": "^2.81.0",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-buble": "^0.15.0",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-stream": "^1.19.0",
"uglify-js": "^2.8.22",
"unix-timestamp": "^0.2.0",
"vinyl-source-stream": "^1.1.0",
"vue-router": "^3.0.5",
"vuex": "^3.1.0",
"webpack": "^4.30.0",
"webpack-dev-server": "^3.3.1"
},
"peerDependencies": {
"acorn-dynamic-import": "^4.0.0",
"acorn": "^6.0.0",
"ajv": "^6.9.1"
},
"tags": [
"auth",
"authentication",
"login",
"registration",
"jwt",
"token",
"vuejs",
"vue.js",
"github",
"facebook",
"google",
"twitter",
"oauth",
"oauth 1.0",
"oauth 2.0"
],
"dependencies": {
"acorn": "^6.1.1",
"ajv": "^6.10.0",
"axios": "^0.18.0",
"vue": "^2.6.10",
"vue-axios": "^2.1.4"
}
}