forked from TomerFi/github-management-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
44
45
{
"name": "github-management-scripts",
"version": "0.0.13",
"description": "Keep track of your GitHub profile and organizations",
"author": {
"name": "Tomer Figenblat",
"url": "https://github.com/TomerFi"
},
"license": "ISC",
"homepage": "https://github.com/TomerFi/github-management-scripts",
"repository": {
"type": "git",
"url": "https://github.com/TomerFi/github-management-scripts"
},
"bugs": {
"url": "https://github.com/TomerFi/github-management-scripts/issues"
},
"keywords": [
"github",
"management",
"aws",
"serverless"
],
"private": true,
"main": "src/main.js",
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"start": "node -e \"require('./src/main.js').handler()\"",
"start:dev": "node -r dotenv/config -e \"require('./src/main.js').handler()\"",
"lint": "eslint ./src/"
},
"dependencies": {
"@octokit/graphql": "^7.0.1",
"aws-sdk": "^2.1431.0",
"diff": "^5.1.0",
"diff2html": "^3.4.40"
},
"devDependencies": {
"dotenv": "^16.3.1",
"eslint": "^8.46.0",
"eslint-plugin-editorconfig": "^4.0.3"
}
}