-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 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
52
{
"name": "codeowners",
"version": "5.1.1",
"description": "A tool for working with CODEOWNERS files",
"main": "codeowners.js",
"types": "codeowners.d.ts",
"bin": {
"codeowners": "index.js"
},
"scripts": {
"test": "jest",
"lint": "eslint --ext *.js"
},
"keywords": [
"codeowners",
"github",
"gitlab"
],
"contributors": [
"Beau Gunderson <[email protected]> (https://beaugunderson.com/)",
"Noah Manneschmidt (https://noah.manneschmidt.net/)"
],
"license": "MIT",
"dependencies": {
"@nodelib/fs.walk": "^1.2.6",
"commander": "^6.2.1",
"find-up": "^2.1.0",
"ignore": "^3.3.10",
"is-directory": "^0.3.1",
"lodash.intersection": "^4.4.0",
"lodash.maxby": "^4.6.0",
"lodash.padend": "^4.6.1",
"true-case-path": "^1.0.3"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^27.5.1",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beaugunderson/codeowners.git"
},
"bugs": {
"url": "https://github.com/beaugunderson/codeowners/issues"
},
"homepage": "https://github.com/beaugunderson/codeowners#readme"
}