-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "sso-clients",
"version": "0.0.12",
"description": "A TypeScript supported package for SSO login.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"prepare": "yarn run build",
"test": "jest --passWithNoTests --maxWorkers=3 --silent --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Sachin-chaurasiya/sso-clients"
},
"keywords": [
"sso",
"login",
"google",
"github",
"typescript"
],
"author": "Sachin Chaurasiya <sachinchaurasiyachotey87@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sachin-chaurasiya/sso-clients/issues"
},
"homepage": "https://github.com/Sachin-chaurasiya/sso-clients#readme",
"dependencies": {
"axios": "^1.6.5"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.3",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"files": [
"lib/**/*"
]
}