-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
138 lines (138 loc) · 4.37 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"author": "Auth0",
"name": "@auth0/auth0-vue",
"description": "Auth0 SDK for Vue Applications using Authorization Code Grant Flow with PKCE",
"license": "MIT",
"version": "2.3.3",
"main": "dist/lib/auth0-vue.cjs.js",
"types": "dist/typings/index.d.ts",
"module": "dist/auth0-vue.production.esm.js",
"exports": {
".": {
"require": "./dist/lib/auth0-vue.cjs.js",
"import": "./dist/auth0-vue.production.esm.js",
"types": "./dist/typings/index.d.ts"
}
},
"scripts": {
"dev": "rimraf dist && rollup -c --watch",
"start": "npm run dev",
"docs": "typedoc --options ./typedoc.js src",
"build": "rimraf dist && rollup -m -c --environment NODE_ENV:production && npm run test:es-check",
"build:stats": "npm run build -- --environment WITH_STATS:true && open stats.html",
"lint": "eslint ./src --ext ts",
"lint:security": "eslint ./src --ext ts --no-eslintrc --config ./.eslintrc.security",
"test": "jest --coverage --silent",
"test:watch": "jest --coverage --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"test:open:integration": "cypress open",
"test:watch:integration": "concurrently --raw npm:dev 'npm:test:open:integration'",
"test:es-check": "npm run test:es-check:es2017 && npm run test:es-check:es2017:module",
"test:es-check:es2017": "es-check es2017 dist/auth0-vue.production.js",
"test:es-check:es2017:module": "es-check es2017 dist/auth0-vue.production.esm.js --module ",
"test:integration:server": "npm run dev",
"test:integration:tests": "wait-on http://localhost:3000/ && cypress run",
"test:integration": "concurrently --raw --kill-others --success first npm:test:integration:server npm:test:integration:tests",
"serve:coverage": "serve coverage/lcov-report -n",
"serve:stats": "serve bundle-stats -n",
"print-bundle-size": "node ./scripts/print-bundle-size",
"prepack": "npm run build",
"publish:cdn": "ccu --trace"
},
"devDependencies": {
"@auth0/component-cdn-uploader": "github:auth0/component-cdn-uploader#v2.2.2",
"@jest/globals": "^29.3.1",
"@rollup/plugin-replace": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"browserstack-cypress-cli": "^1.19.0",
"cli-table": "^0.3.11",
"concurrently": "^7.5.0",
"cypress": "^13.1.0",
"es-check": "^7.0.1",
"eslint": "^8.5.0",
"eslint-plugin-security": "^1.5.0",
"gzip-size": "^6.0.0",
"husky": "^7.0.4",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-junit": "^14.0.1",
"oidc-provider": "^7.10.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"qss": "^2.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-dev": "^1.1.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"rollup-plugin-visualizer": "^5.5.2",
"rollup-plugin-vue": "^6.0.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"serve": "^14.1.1",
"ts-jest": "^29.0.3",
"tslib": "^2.3.1",
"typedoc": "^0.25.1",
"typescript": "^5.2.2",
"vue-router": "^4.0.12",
"wait-on": "^7.2.0"
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"vue": "^3.2.41"
},
"peerDependencies": {
"vue-router": "^4.0.12"
},
"peerDependenciesMeta": {
"vue-router": {
"optional": true
}
},
"files": [
"src",
"dist"
],
"repository": {
"type": "git",
"url": "git://github.com/auth0/auth0-vue.git"
},
"bugs": {
"url": "https://github.com/auth0/auth0-vue/issues"
},
"homepage": "https://github.com/auth0/auth0-vue#readme",
"keywords": [
"auth0",
"login",
"Authorization Code Grant Flow",
"PKCE",
"Single Page Application authentication",
"SPA authentication",
"Vue"
],
"ccu": {
"name": "auth0-vue",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "auth0-vue.production.js",
"bucket": "assets.us.auth0.com",
"localPath": "dist",
"digest": {
"hashes": [
"sha384"
],
"extensions": [
".js"
]
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}