forked from saucelabs/check-my-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "check-my-repo",
"version": "1.0.0",
"description": "An automated tool that verifies repositories to comply with OSS best practices",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --coverage --watchAll"
},
"jest": {
"testPathIgnorePatterns": [
"__tests__/__fixtures__",
"__tests__/__mocks__",
"__tests__/__snapshots__"
]
},
"repository": {
"type": "git",
"url": "https://github.com/saucelabs/check-my-repo"
},
"keywords": [
"repolinter",
"automated",
"check",
"quality"
],
"author": "Paloma Oliveira <paloma.oliveira@saucelabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/saucelabs/check-my-repo/issues"
},
"homepage": "https://github.com/saucelabs/check-my-repo",
"dependencies": {
"@octokit/rest": "18.5.2",
"chalk": "4.1.2",
"linguist": "^0.1.7",
"npm-check-updates": "12.5.11",
"rainbow-penguin": "^1.0.3",
"repolinter": "0.11.2",
"rimraf": "^3.0.2",
"simple-git": "2.38.0"
},
"devDependencies": {
"jest": "26.6.3"
}
}