-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.8 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
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
{
"private": false,
"name": "google-oauth-gsi",
"version": "3.0.0",
"main": "./dist/google-oauth-gsi.cjs",
"module": "./dist/google-oauth-gsi.mjs",
"types": "./dist/google-oauth-gsi.d.ts",
"exports": {
".": {
"require": "./dist/google-oauth-gsi.cjs",
"import": "./dist/google-oauth-gsi.mjs",
"types": "./dist/google-oauth-gsi.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",
"test": "jest --runInBand",
"test:coverage": "jest --runInBand --coverage",
"lint:scripts": "eslint . --ext .ts",
"commit": "./node_modules/.bin/git-cz",
"semantic-release": "semantic-release --branches main"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/jsdom": "^20.0.0",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"dts-bundle-generator": "^6.13.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"vite": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/i7N3/google-oauth-library.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"license": "MIT",
"keywords": [
"react-oauth-google",
"react-google-login",
"react-social-login",
"react-oauth",
"react-login",
"svelte-oauth-google",
"svelte-google-login",
"svelte-social-login",
"svelte-oauth",
"svelte-login",
"vue-oauth-google",
"vue-google-login",
"vue-social-login",
"vue-oauth",
"vue-login",
"js-oauth-google",
"js-google-login",
"js-social-login",
"js-oauth",
"js-login",
"ts-oauth-google",
"ts-google-login",
"ts-social-login",
"ts-oauth",
"ts-login",
"google-login",
"google-oAuth2",
"google-oAuth",
"gsi",
"svelte",
"sveltekit",
"react",
"reactjs",
"vue",
"angular",
"typescript",
"login",
"signin",
"sign-in",
"google",
"identity",
"auth",
"oauth",
"oauth2",
"google-signin"
]
}