2020-05-28 11:29:21 -04:00
|
|
|
{
|
|
|
|
|
"name": "@dopry/svelte-oidc",
|
2023-01-24 11:46:23 -05:00
|
|
|
"version": "1.1.0",
|
2020-05-28 11:29:21 -04:00
|
|
|
"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",
|
2020-06-04 03:14:17 -04:00
|
|
|
"start": "sirv public -s",
|
2020-05-28 11:29:21 -04:00
|
|
|
"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": {
|
2021-03-18 15:44:46 -04:00
|
|
|
"oidc-client": "1.11.5"
|
2020-05-28 11:29:21 -04:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2021-03-18 14:04:44 -04:00
|
|
|
"@rollup/plugin-node-resolve": "11.2.0",
|
|
|
|
|
"@rollup/plugin-replace": "2.4.1",
|
2020-08-12 18:55:51 -04:00
|
|
|
"@testing-library/cypress": "6.0.0",
|
|
|
|
|
"autoprefixer": "9.8.6",
|
|
|
|
|
"cypress": "4.12.1",
|
2021-03-18 14:52:34 -04:00
|
|
|
"eslint": "7.22.0",
|
|
|
|
|
"eslint-config-prettier": "8.1.0",
|
|
|
|
|
"eslint-plugin-cypress": "2.11.2",
|
|
|
|
|
"eslint-plugin-svelte3": "3.1.2",
|
2020-08-12 18:55:51 -04:00
|
|
|
"gh-pages": "3.1.0",
|
2023-05-01 14:54:32 -04:00
|
|
|
"lint-staged": "13.2.1",
|
2023-10-31 19:40:55 +00:00
|
|
|
"postcss": "8.4.31",
|
2020-05-28 11:29:21 -04:00
|
|
|
"postcss-load-config": "2.1.0",
|
2020-08-12 18:55:51 -04:00
|
|
|
"prettier": "2.0.5",
|
2021-03-18 14:00:02 -04:00
|
|
|
"rollup": "2.41.5",
|
2020-08-12 18:55:51 -04:00
|
|
|
"rollup-plugin-babel": "4.4.0",
|
2020-05-28 11:29:21 -04:00
|
|
|
"rollup-plugin-commonjs": "10.1.0",
|
2021-03-18 14:00:02 -04:00
|
|
|
"rollup-plugin-livereload": "2.0.0",
|
2020-05-28 11:29:21 -04:00
|
|
|
"rollup-plugin-node-resolve": "5.2.0",
|
2021-03-18 14:00:02 -04:00
|
|
|
"rollup-plugin-svelte": "7.1.0",
|
|
|
|
|
"rollup-plugin-terser": "7.0.2",
|
2020-08-12 18:55:51 -04:00
|
|
|
"sirv-cli": "1.0.6",
|
2021-03-18 14:04:44 -04:00
|
|
|
"start-server-and-test": "1.12.0",
|
2022-07-15 16:46:55 +00:00
|
|
|
"svelte": "3.49.0",
|
2021-03-18 14:53:48 -04:00
|
|
|
"svelte-highlight": "0.7.1",
|
|
|
|
|
"svelte-preprocess": "4.6.9"
|
2020-05-28 11:29:21 -04:00
|
|
|
}
|
|
|
|
|
}
|