This repository was archived by the owner on Mar 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.83 KB
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
{
"name": "@cryptr/cryptr-spa-js",
"description": "Cryptr SDK for Single Page Applications using passwordless authentication and/or SSO",
"version": "2.1.0",
"main": "dist/cryptr-spa-js.cjs.js",
"module": "dist/cryptr-spa-js.esm.js",
"browser": "dist/cryptr-spa-js.umd.js",
"types": "dist/types/main.d.ts",
"license": "MIT",
"devDependencies": {
"@babel/core": ">=7.0.0-beta.0 <8",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.10.4",
"@lopatnov/rollup-plugin-uglify": "^2.1.0",
"@types/crypto-js": "^4.1.1",
"@types/jest": "^29.5.12",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"babel-jest": "^29.7.0",
"concurrently": "^6.4.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.25.4",
"faker": "^4.1.0",
"istanbul-badges-readme": "^1.0.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"micromatch": "4.0.8",
"msw": "^0.19.5",
"prettier": "^2.0.5",
"rollup": "1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"terser": "^5.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3",
"yarn": "^1.22.18",
"yarn-audit-fix": "^9.2.2"
},
"scripts": {
"prepare": "yarn build",
"type-check": "tsc --noEmit",
"type-check:watch": "yarn type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "rollup -c",
"build": "rm -rf dist && yarn build:types && yarn build:js",
"build:watch": "rollup -c -w",
"make-badges": "istanbul-badges-readme",
"test": "jest",
"test:build": "jest --env=jsdom && yarn make-badges && yarn build",
"coverage": "jest --env=jsdom --watchAll=false --coverage",
"test:watch": "jest --env=jsdom --watchAll --coverage",
"test:with-badges": "yarn coverage && yarn make-badges",
"format": "prettier --write '**/*.{js,ts,json,md}'",
"download-extension": "ced gleekbfjekiniecknbkamfmkohkpodhe extensions/ignore-x-frame-headers",
"unpublish:lib": "yarn unpublish ${npm_package_name}@${npm_package_version} --force",
"publish-force": "jest && yarn make-badges && yarn unpublish:lib && yarn build && ls && yarn publish:lib",
"publish:lib": "jest && yarn make-badges && yarn prepare && ls && yarn publish",
"fix-yarn": "yarn-audit-fix"
},
"engines": {
"node": ">=20.12.2"
},
"renovate": {
"extends": [
"config:js-lib"
],
"automerge": true,
"major": {
"automerge": false
},
"automergeType": "branch"
},
"files": [
"dist"
],
"dependencies": {
"@cryptography/sha256": "^0.2.0",
"@cryptr/cryptr-config-validation": "^0.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/jwt-decode": "^2.2.1",
"Base64": "^1.2.0",
"crypto-js": "^4.2.0",
"es-cookie": "^1.5.0",
"fast-text-encoding": "^1.0.3",
"hasha": "^5.2.0",
"jwt-decode": "^2.2.0",
"ky": "1.2.2",
"promise-polyfill": "^8.2.3",
"rollup-plugin-node-globals": "^1.4.0",
"secure-random": "^1.1.2",
"uuid": "^8.2.0"
},
"keywords": [
"cryptr",
"authentication",
"SPA",
"oAuth",
"client",
"token",
"user-account",
"sso",
"slo",
"gateway"
],
"author": "Cryptr <jeremie@cryptr.co> (https://www.cryptr.co)",
"repository": {
"type": "git",
"url": "git+https://github.com/cryptr-auth/cryptr-spa-js.git"
},
"bugs": {
"url": "https://github.com/cryptr-auth/cryptr-spa-js/issues"
},
"homepage": "https://github.com/cryptr-auth/cryptr-spa-js#readme"
}