forked from appvia/githubUserManager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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": "^8.2.0",
"@octokit/rest": "^22.0.1",
"googleapis": "^171.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@types/jest": "30.0.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.2.0",
"prettier": "3.8.1",
"typescript-eslint": "^8.56.1"
}
}