forked from todogroup/repolinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.18 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
{
"name": "repolinter",
"version": "0.7.0",
"description": "Lint open source repositories",
"main": "index.js",
"bin": {
"repolinter": "bin/repolinter.js"
},
"scripts": {
"test": "standard --env mocha && mocha tests/**/*.js --no-timeouts",
"coverage": "nyc npm test",
"fix": "standard --fix"
},
"standard": {
"env": [
"mocha"
]
},
"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": {
"find-config": "^1.0.0",
"isbinaryfile": "^3.0.3",
"jsonfile": "^3.0.0",
"log-symbols": "^1.0.2",
"matched": "^0.4.4",
"rimraf": "^2.6.1",
"simple-git": "^1.73.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-string": "^1.3.0",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"sinon": "^7.2.3",
"standard": "^12.0.1"
}
}