-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.36 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
{
"name": "gitoutofhours",
"version": "1.1.0",
"description": "View commit information on out of hours commits on a repo",
"main": "src/index.js",
"bin": {
"gitoutofhours": "./bin/gitoutofhours.js"
},
"author": {
"name": "John Akerman",
"url": "https://www.johnakerman.co.uk/"
},
"repository": {
"type": "git",
"url": "https://github.com/JohnAkerman/GitOutOfHours.git"
},
"publishConfig": {
"registry": "https://registry-url"
},
"files": [
"bin",
"src"
],
"engines": {
"node": ">=10"
},
"bugs": "https://github.com/JohnAkerman/GitOutOfHours/issues",
"homepage": "https://github.com/JohnAkerman/GitOutOfHours",
"keywords": [
"git-out-of-hours",
"git",
"logging",
"repo",
"commit",
"commits",
"overtime",
"log",
"git-log"
],
"scripts": {
"test": "mocha --timeout 5000 --require mocha-suppress-logs",
"test:full": "mocha --timeout 5000",
"test:coverage": "nyc --reporter=html npm run test",
"test:coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"license": "MIT",
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"mocha": "^10.0.0",
"mocha-suppress-logs": "^0.3.1",
"nyc": "^15.1.0",
"shelljs": "^0.8.5",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
}
}