mirror of
https://github.com/TECHNOFAB11/svelte-oidc.git
synced 2025-12-10 23:20:05 +01:00
Bumps [gh-pages](https://github.com/tschaub/gh-pages) from 3.1.0 to 5.0.0. - [Release notes](https://github.com/tschaub/gh-pages/releases) - [Changelog](https://github.com/tschaub/gh-pages/blob/main/changelog.md) - [Commits](https://github.com/tschaub/gh-pages/compare/v3.1.0...v5.0.0) --- updated-dependencies: - dependency-name: gh-pages dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
78 lines
1.9 KiB
JSON
78 lines
1.9 KiB
JSON
{
|
|
"name": "@dopry/svelte-oidc",
|
|
"version": "1.1.0",
|
|
"repository": "https://github.com/dopry/svelte-oidc",
|
|
"description": "Svelte OIDC Component Library",
|
|
"keywords": [
|
|
"svelte"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.min.js",
|
|
"module": "dist/index.min.mjs",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"cy:open": "cypress open",
|
|
"cy:run": "cypress run",
|
|
"showcase:publish": "gh-pages -d public",
|
|
"showcase:build": "rollup -c rollup.config.showcase.js",
|
|
"showcase:dev": "rollup -c rollup.config.showcase.js -w ",
|
|
"lint": "eslint --color --ignore-path .gitignore .",
|
|
"prepublishOnly": "npm run build",
|
|
"start": "sirv public -s",
|
|
"test": "start-server-and-test showcase:dev http://localhost:5000 cy:run"
|
|
},
|
|
"browserslist": [
|
|
"defaults"
|
|
],
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{html, css, scss, stylus, js, ts, json, yml, md}": [
|
|
"prettier --write",
|
|
"git add"
|
|
],
|
|
"*.{js, svelte}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"svelte": "src/components/components.module.js",
|
|
"dependencies": {
|
|
"oidc-client": "1.11.5"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-node-resolve": "11.2.0",
|
|
"@rollup/plugin-replace": "2.4.1",
|
|
"@testing-library/cypress": "6.0.0",
|
|
"autoprefixer": "9.8.6",
|
|
"cypress": "4.12.1",
|
|
"eslint": "7.22.0",
|
|
"eslint-config-prettier": "8.1.0",
|
|
"eslint-plugin-cypress": "2.11.2",
|
|
"eslint-plugin-svelte3": "3.1.2",
|
|
"gh-pages": "5.0.0",
|
|
"lint-staged": "13.2.1",
|
|
"postcss": "8.4.31",
|
|
"postcss-load-config": "2.1.0",
|
|
"prettier": "2.0.5",
|
|
"rollup": "2.41.5",
|
|
"rollup-plugin-babel": "4.4.0",
|
|
"rollup-plugin-commonjs": "10.1.0",
|
|
"rollup-plugin-livereload": "2.0.0",
|
|
"rollup-plugin-node-resolve": "5.2.0",
|
|
"rollup-plugin-svelte": "7.1.0",
|
|
"rollup-plugin-terser": "7.0.2",
|
|
"sirv-cli": "1.0.6",
|
|
"start-server-and-test": "1.12.0",
|
|
"svelte": "3.49.0",
|
|
"svelte-highlight": "0.7.1",
|
|
"svelte-preprocess": "4.6.9"
|
|
}
|
|
}
|