-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "integreat-authenticator-googleauth",
"version": "1.0.1",
"description": "Google Auth authenticator for Integreat",
"author": "Kjell-Morten Bratsberg Thorsen <kjellmorten@integreat.io>",
"license": "ISC",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "node --import tsx --test --enable-source-maps --experimental-test-coverage --test-reporter node-test-reporter src/*.test.ts",
"test:inspect": "node --inspect node_modules/ava/profile.js",
"test:watch": "npm run dev",
"dev": "node --import tsx --test --enable-source-maps --test-reporter node-test-reporter --watch 'src/**/*.test.ts' || exit 0",
"build": "tsc",
"lint": "eslint --ext .ts src",
"verify": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/integreat-authenticator-googleauth.git"
},
"bugs": {
"url": "https://github.com/integreat-io/integreat-authenticator-googleauth/issues"
},
"homepage": "https://github.com/integreat-io/integreat-authenticator-googleauth#readme",
"dependencies": {
"google-auth-library": "^9.14.2"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^7.1.1",
"@types/node": "^22.8.3",
"@types/sinon": "^17.0.3",
"integreat": "^1.5.10",
"sinon": "^19.0.2"
}
}