-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
46
47
48
49
50
51
{
"name": "gh-org-user-sync",
"version": "1.0.2",
"description": "Syncs the members of a GitHub organization to a new GitHub organization",
"homepage": "https://github.com/asheliahut/gh-org-user-sync",
"keywords": [
"github",
"api",
"organization",
"user",
"sync"
],
"repository": {
"type": "git",
"url": "https://github.com/asheliahut/gh-org-user-sync"
},
"scripts": {
"start": "ts-node src/gh-org-user-sync.ts",
"build": "tsc",
"package": "pkg . -t node14-linux --output gh-org-user-sync",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Ashley Hutson <[email protected]> (https://screwmyprivacy.com)",
"license": "Unlicense",
"bin": "dist/gh-org-user-sync.js",
"main": "dist/gh-org-user-sync.js",
"files": [
"dist",
"src",
"tsconfig.json"
],
"pkg": {
"scripts": "dist/**/*.js"
},
"dependencies": {
"@octokit/rest": "^19.0.4",
"cli-progress": "^3.10.0",
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/node": "^20.2.5",
"pkg": "^5.5.2",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^5.1.3"
}
}