-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.43 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.43 KB
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
{
"name": "gitlog-busfactor",
"version": "1.2.1",
"description": "Calculates the bus factor from git log",
"bin": {
"gitlog-busfactor": "./cli.js"
},
"main": "lib/build-busfactors.js",
"scripts": {
"start": "nodemon cli.js",
"test": "mocha test --recursive",
"test:ci": "mocha test --recursive --reporter mocha-junit-reporter --reporter-options mochaFile=reports/mocha/test-results.xml",
"coverage": "nyc npm run test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codevey/gitlog-busfactor.git"
},
"keywords": [
"git",
"busfactor",
"metrics"
],
"author": "Christoph Walcher <christoph.walcher@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/codevey/gitlog-busfactor/issues"
},
"homepage": "https://github.com/codevey/gitlog-busfactor#readme",
"dependencies": {
"commander": "^4.1.1",
"csv-writer": "^1.6.0",
"fs-extra": "^8.1.0",
"multimatch": "^4.0.0",
"parse-git-numstat": "^1.1.2",
"table": "^5.4.6"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"mocha": "^7.0.1",
"mocha-junit-reporter": "^1.23.3",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"standard-version": "^7.1.0"
}
}