-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 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
38
39
40
41
42
43
44
{
"name": "github-cleaner",
"version": "1.7.0",
"description": "A simple utility that will back up and / or delete repos in bulk",
"main": "./bin/ghclean.js",
"repository": {
"type": "git",
"url": "https://github.com/mattc41190/github-cleaner"
},
"bin": {
"ghclean": "./bin/ghclean.js"
},
"preferGlobal": true,
"scripts": {
"test": "mocha --timeout 100000 --file test/integration/github-remove-repo.spec.js",
"start": "ENV=DEV node ./bin/ghclean.js",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish"
},
"keywords": [
"github",
"cleaner",
"git",
"manage",
"github-api",
"delete",
"backup",
"bulk",
"repos",
"repo"
],
"author": "Matthew Cale",
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"inquirer": "^5.0.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.0",
"sinon": "^4.3.0"
}
}