-
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.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 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": "github-bulk-unsubscriber",
"version": "1.0.1",
"description": "Unsubscribe from large quantities of Github repositories in an instance. Specify the repos to unwatch with a Regex.",
"main": "dist/index.js",
"bin": "dist/index.js",
"repository": "https://github.com/lukasbach/github-bulk-unsubscriber",
"author": "Lukas Bach",
"license": "MIT",
"files": [
"dist/**/*",
"!dist/**/*.test.js"
],
"scripts": {
"start": "ts-node ./src/index.ts",
"clean": "rimraf ./dist/ ./exec/",
"build": "yarn clean && tsc",
"bundle": "pkg . --out-dir ./exec/",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"devDependencies": {
"@types/node": "^14.14.25",
"@types/prompts": "^2.0.14",
"ava": "^3.15.0",
"pkg": "^4.4.9",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@octokit/plugin-throttling": "^3.5.1",
"@octokit/rest": "^18.9.1",
"prompts": "^2.4.1"
}
}