-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
94 lines (94 loc) · 2.66 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
87
88
89
90
91
92
93
94
{
"name": "vue-auth0-plugin",
"version": "0.0.0-semantically-released",
"description": "Simple auth0 wrapper for Vue.js",
"author": "Jonathan Pollert",
"scripts": {
"build": "npm run build:ts && npm run build:dts",
"lint": "vue-cli-service lint",
"build:dts": "copyfiles -f src/vue.d.ts dist && concat -o dist/index.d.ts dist/index.d.ts src/concat.d.ts",
"build:ts": "rollup -c rollup.config.js",
"release": "np --tag=beta",
"test": "jest",
"test:ci": "jest --coverage"
},
"main": "dist/auth0-vue-plugin.cjs.js",
"module": "dist/auth0-vue-plugin.esm.js",
"browser": "dist/auth0-vue-plugin.browser.js",
"unpkg": "dist/auth0-vue-plugin.global.js",
"files": [
"dist/**/*.js",
"dist/*.d.ts",
"types"
],
"types": "dist/index.d.ts",
"dependencies": {
"@auth0/auth0-spa-js": "^2.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vue/cli-plugin-eslint": "^5.0.0-beta.2",
"@vue/eslint-config-standard": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.0.0-beta.14",
"concat": "^1.0.3",
"conventional-changelog-conventionalcommits": "^7.0.2",
"copyfiles": "^2.4.1",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^8.0.1",
"jest": "^27.0.4",
"node": "^21.6.0",
"np": "^8.0.4",
"rollup": "^2.39.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"semantic-release": "^23.0.0",
"semantic-release-github-pr": "^6.0.1",
"ts-jest": "^27.0.3",
"ts-mockito": "^2.6.1",
"typescript": "^4.4.4",
"vue": "^3.0.5",
"vue-router": "^4.0.3",
"vue-template-compiler": "^2.6.12"
},
"peerDependencies": {
"vue": "^3.0.5",
"vue-router": "^4.0.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"bugs": {
"url": "https://github.com/jnt0r/vue-auth0-plugin/issues"
},
"homepage": "https://github.com/jnt0r/vue-auth0-plugin#readme",
"keywords": [
"auth0",
"vue",
"plugin",
"wrapper",
"authentication",
"vuejs"
],
"license": "MIT",
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnt0r/vue-auth0-plugin.git"
}
}