-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "google-oauth-webview",
"version": "1.0.4",
"description": "A library to detect web views unsupported by Google OAuth",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha --parallel --require ts-node/register --require source-map-support/register \"./src/**/*.spec.ts\"",
"dev:test": "mocha --require ts-node/register --watch --extension ts \"./src/**/*.spec.ts\"",
"build": "rimraf lib && tsc -p tsconfig-build.json",
"prepublish": "npm run build",
"serve": "npx serve static"
},
"funding": {
"url": "https://github.com/sponsors/LoicPoullain"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"webview",
"web view",
"Google OAuth",
"Google SSO"
],
"bugs": {
"url": "https://github.com/LoicPoullain/google-oauth-webview/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LoicPoullain/google-oauth-webview.git"
},
"homepage": "https://github.com/LoicPoullain/google-oauth-webview",
"contributors": [
"Loïc Poullain <loic.poullain@centraliens.net>"
],
"license": "MIT",
"files": [
"lib/"
],
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^18.19.55",
"mocha": "^10.7.3",
"rimraf": "^6.0.1",
"serve": "^14.2.3",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}