forked from dgrubelic/vue-authenticate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.99 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
{
"name": "vue-authenticate",
"version": "1.3.5-beta.1",
"description": "Authentication library for Vue.js",
"main": "dist/vue-authenticate.js",
"module": "dist/vue-authenticate.es2015.js",
"unpkg": "dist/vue-authenticate.js",
"scripts": {
"dev": "parallelshell \"node-dev ./example/server.js\" \"gulp dev\"",
"build": "node build/build.js && cp ./dist/vue-authenticate.js ./example/"
},
"keywords": [
"vue",
"vuejs",
"auth"
],
"author": {
"name": "Davor Grubelic",
"email": "[email protected]",
"url": "https://dgrubelic.me"
},
"repository": {
"type": "git",
"url": "https://github.com/dgrubelic/vue-authenticate.git"
},
"license": "MIT",
"devDependencies": {
"axios": "^0.17.1",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-rollup": "^3.0.0",
"body-parser": "^1.17.1",
"connect-history-api-fallback": "^1.3.0",
"cors": "^2.8.1",
"express": "^4.15.2",
"gulp": "^3.9.1",
"gulp-connect": "^5.0.0",
"gulp-webpack": "^1.5.0",
"node-dev": "^3.1.3",
"oauth": "^0.9.15",
"oauth-signature": "^1.3.1",
"parallelshell": "^2.0.0",
"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-axios": "^2.0.2",
"vue-router": "^2.3.0",
"vuex": "^2.2.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"tags": [
"auth",
"authentication",
"login",
"registration",
"jwt",
"token",
"vuejs",
"vue.js",
"github",
"facebook",
"google",
"twitter",
"oauth",
"oauth 1.0",
"oauth 2.0"
]
}