forked from todogroup/repolinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.28 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "repolinter",
"version": "0.11.2",
"description": "Lint open source repositories",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"repolinter": "bin/repolinter.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "mocha tests/**/*.js",
"coverage": "nyc npm test",
"lint": "eslint ./",
"fix": "eslint ./ --fix",
"apidoc": "documentation build index.js -f html -o apidoc -c documentation.yml"
},
"keywords": [
"lint",
"linter",
"repository",
"github",
"license",
"readme",
"open source"
],
"author": "The TODO Group",
"license": "Apache-2.0",
"homepage": "https://github.com/todogroup/repolinter",
"bugs": {
"url": "https://github.com/todogroup/repolinter/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/todogroup/repolinter.git"
},
"dependencies": {
"@octokit/rest": "^18.5.0",
"ajv": "^6.12.6",
"broken-link-checker": "^0.7.8",
"chalk": "^4.1.0",
"command-exists": "^1.2.9",
"dotenv": "^8.2.0",
"emoji-regex": "^9.2.0",
"find-config": "^1.0.0",
"gitlog": "^4.0.3",
"is-windows": "^1.0.2",
"isbinaryfile": "^4.0.6",
"js-yaml": "^3.14.1",
"jsonfile": "^6.1.0",
"lodash": "^4.17.20",
"log-symbols": "^4.0.0",
"matched": "^5.0.1",
"nock": "^13.0.5",
"node-fetch": "^2.6.0",
"rimraf": "^3.0.2",
"simple-git": "^3.5.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-each": "0.0.1",
"chai-string": "^1.5.0",
"documentation": "^14.0.0",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"gh-pages": "^3.1.0",
"markdown-toc": "^1.2.0",
"markdownlint": "^0.26.0",
"mocha": "^10.0.0",
"mock-http-server": "^1.4.2",
"nyc": "^15.1.0",
"prettier": "2.2.0",
"prettier-config-standard": "^1.0.1",
"sinon": "^15.0.2",
"strip-ansi": "^6.0.0",
"typescript": "^4.1.2",
"unist-util-is": "^4.0.4"
}
}