-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1019 Bytes
/
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
{
"name": "BusFactor",
"version": "1.0.0",
"description": "Calculate the bus factor for a given repository",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/yamikuronue/BusFactor.git"
},
"author": "Yamikuronue",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/yamikuronue/BusFactor/issues"
},
"homepage": "https://github.com/yamikuronue/BusFactor",
"dependencies": {
"async": "^1.3.0",
"cliff": "^0.1.10",
"git-blame": "^0.1.1",
"git-tools": "^0.2.0",
"mkdirp": "^0.5.1",
"recursive-readdir": "^1.2.1",
"rimraf": "^2.4.1",
"yargs": "^3.15.0"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"sinon": "^1.15.4"
}
}