-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 943 Bytes
/
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
{
"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": {
"@octokit/types": "9.2.3",
"@types/jest": "28.1.8",
"@typescript-eslint/eslint-plugin": "5.59.8",
"@typescript-eslint/parser": "5.59.8",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "28.1.3",
"prettier": "2.8.8",
"ts-jest": "28.0.8"
},
"dependencies": {
"@octokit/auth-app": "^4.0.0",
"@octokit/rest": "^19.0.0",
"googleapis": "^118.0.0",
"ts-node": "^10.4.0",
"typescript": "^5.0.0"
}
}