-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.97 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
{
"name": "@jasonatepaint/cognito-sso-client",
"description": "The client library handles all of the communication between the client application and the SSO broker.",
"version": "1.0.7",
"type": "module",
"bugs": {
"url": "https://github.com/jasonatepaint/cognito-sso-client/issues"
},
"homepage": "https://github.com/jasonatepaint/cognito-sso-client#readme",
"keywords": [
"cognito",
"sso",
"broker",
"idp"
],
"author": "Jason Fischer",
"license": "ISC",
"scripts": {
"clean": "rimraf dist",
"prepare": "npm run clean && npm run lint && npm run build",
"lint": "eslint src",
"build:pack": "node esbuild.config.cjs",
"build:types": "tsc --project tsconfig.build.json && npm run lint",
"build": "npm run build:pack && npm run build:types",
"deploy": "npm publish",
"test": "node_modules/jest/bin/jest.js --all --silent"
},
"dependencies": {
"crypto-browserify": "3.12.0",
"crypto-js": "4.2.0",
"dayjs": "1.11.5"
},
"devDependencies": {
"@babel/preset-env": "7.21.4",
"@babel/preset-typescript": "7.24.1",
"@types/crypto-js": "4.2.2",
"@types/jest": "29.5.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"babel-jest": "29.7.0",
"esbuild": "0.20.2",
"esbuild-analyzer": "0.2.0",
"esbuild-node-externals": "1.13.0",
"eslint": "8.57.0",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-environment-jsdom-global": "4.0.0",
"jest-progress-bar-reporter": "1.0.25",
"prettier": "3.2.5",
"rimraf": "3.0.2",
"ts-loader": "9.4.2",
"typescript": "4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonatepaint/cognito-sso-client.git"
},
"exports": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"main": "index.js",
"directories": {
"test": "tests"
}
}