forked from dsb-norge/vue-keycloak-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "@gemtmp/vue-keycloak-js",
"version": "1.1.6",
"author": "Nils Lien <[email protected]>",
"description": "A Keycloak plugin for Vue >= 2.x",
"main": "dist/dsb-vue-keycloak.cjs.js",
"module": "dist/dsb-vue-keycloak.esm.js",
"browser": "dist/dsb-vue-keycloak.umd.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:gemtmp/vue-keycloak-js.git"
},
"bugs": {
"url": "https://github.com/gemtmp/vue-keycloak-js/issues"
},
"homepage": "https://github.com/gemtmp/vue-keycloak-js",
"dependencies": {
"keycloak-js": "8.0.0"
},
"keywords": [
"vue",
"keycloak"
],
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.1.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"version": "npm run build && git add -A",
"postversion": "git push -u --follow-tags origin master && npm publish"
},
"files": [
"dist"
]
}