-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
70 lines (70 loc) · 2.03 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
{
"name": "@baloise/vue-keycloak",
"version": "1.4.0",
"description": "Keycloak plugin for Vue3 and Composition API",
"author": {
"name": "Gery Hirschfeld",
"email": "[email protected]",
"url": "https://github.com/hirsch88"
},
"homepage": "https://github.com/baloise/vue-keycloak",
"repository": {
"type": "git",
"url": "https://github.com/baloise/vue-keycloak.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build": "npm run build:clean && npm run build:compile && npm run build:bundle",
"build:clean": "rimraf dist && rimraf dist-transpiled",
"build:compile": "tsc -p .",
"build:bundle": "rollup --config rollup.config.js",
"lint": "eslint src --ext .ts,vue",
"format": "npm run prettier:write",
"prettier:write": "prettier --write \"./src\"",
"prettier:check": "prettier --check \"./src\"",
"release": "semantic-release"
},
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist/"
],
"keywords": [
"vue",
"keycloak",
"composition-api"
],
"license": "Apache-2.0",
"peerDependencies": {
"jwt-decode": "^3.1.2",
"keycloak-js": "^12.0.4",
"vue": "^3.0.8"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.1.0",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"eslint": "^7.23.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"jest": "^26.6.3",
"jwt-decode": "^3.1.2",
"keycloak-js": "^12.0.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.43.0",
"semantic-release": "^17.4.2",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3",
"vue": "^3.0.8"
},
"dependencies": {}
}