-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"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)",
"main": "index.js",
"scripts": {
"test": "jest --ci",
"lint": "eslint .",
"lint-fix": "eslint --fix .",
"start": "ts-node index"
},
"author": "Chris Nesbitt-Smith",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@octokit/types": "16.0.0",
"@types/jest": "30.0.0",
"@types/node": "^24.13.2",
"@typescript-eslint/eslint-plugin": "8.62.1",
"@typescript-eslint/parser": "8.62.1",
"eslint": "10.6.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "^17.7.0",
"jest": "30.4.2",
"prettier": "3.9.4",
"ts-jest": "29.4.11"
},
"dependencies": {
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"googleapis": "^173.0.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}