-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.3 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
52
53
54
55
{
"name": "remove-github-forks",
"version": "2.1.1",
"description": "Delete all forks that have no commits that are not in the main repository",
"main": "src/index.js",
"bin": "src/bin.js",
"scripts": {
"lint-fix": "xo --fix && prettier --write .",
"lint": "xo && prettier --check .",
"test": "ava",
"prepack": "npm run lint && npm run test"
},
"keywords": [
"github",
"delete",
"fork"
],
"author": "Denis Sokolov",
"license": "ISC",
"engines": {
"node": ">=10",
"npm": ">=6.10"
},
"dependencies": {
"@octokit/plugin-throttling": "^3.3.0",
"@octokit/rest": "^18.0.6",
"commander": "^6.1.0",
"confirm-simple": "^1.0.3",
"single-line-log": "^1.1.2"
},
"repository": {
"type": "git",
"url": "http://github.com/denis-sokolov/remove-github-forks.git"
},
"bugs": {
"url": "https://github.com/denis-sokolov/remove-github-forks/issues"
},
"homepage": "https://github.com/denis-sokolov/remove-github-forks",
"devDependencies": {
"ava": "^3.12.1",
"prettier": "^2.1.2",
"xo": "^0.33.1"
},
"xo": {
"extends": [
"plugin:promise/recommended"
],
"rules": {
"ava/no-import-test-files": "off",
"ava/no-todo-test": "off",
"camelcase": "off",
"no-await-in-loop": "off"
}
}
}