forked from appvia/githubUserManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "githubusermanager",
"version": "1.0.0",
"description": "1. [Add a custom attribute on the users](https://support.google.com/a/answer/6208725?hl=en#zippy=%2Cadd-a-new-custom-attribute)",
"license": "MIT",
"author": "Chris Nesbitt-Smith",
"type": "module",
"main": "./index.js",
"scripts": {
"check-types": "tsc",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"start": "tsx index.ts",
"test": "jest --runInBand --collectCoverage=false"
},
"dependencies": {
"@octokit/auth-app": "^7.1.3",
"@octokit/rest": "^21.0.2",
"googleapis": "^144.0.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/jest": "29.5.14",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"typescript-eslint": "^8.18.2"
}
}