-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.49 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "orglinter",
"version": "0.1.1",
"description": "Ensure proper membership list and config for GitHub orgs",
"scripts": {
"lint": "eslint .",
"start": "./bin/cli.js",
"test:mocha": "mocha",
"test": "nyc npm run test:mocha",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "[email protected]:godaddy/orglinter.git"
},
"author": "GoDaddy Operating Company, LLC",
"maintainers": [
"Joey Wilhelm <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@octokit/graphql": "^7.0.1",
"@octokit/request": "^8.1.1",
"dotenv": "^16.3.1"
},
"devDependencies": {
"assume": "^2.3.0",
"eslint": "^8.46.0",
"eslint-config-godaddy": "^7.0.2",
"eslint-plugin-jsdoc": "^46.4.6",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.2.0"
},
"bin": {
"orglinter": "./bin/cli.js"
},
"keywords": [
"github",
"linting",
"organization management",
"membership",
"users",
"synchronize"
],
"bugs": {
"url": "https://github.com/godaddy/orglinter/issues"
},
"files": [
"bin/",
"src/"
],
"engines": {
"node": ">= 12.0.0"
},
"nyc": {
"all": true,
"include": [
"src/**"
],
"reporter": [
"cobertura",
"html",
"lcov",
"text"
]
},
"mocha": {
"recursive": true,
"spec": "test/**/*.spec.js"
}
}