-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "parse-git-numstat",
"version": "1.1.2",
"description": "Parses git logs created with numstat option",
"main": "index.js",
"scripts": {
"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/parse-git-numstat.git"
},
"keywords": [
"git",
"log",
"numstat",
"parse"
],
"author": "Christoph Walcher <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/codevey/parse-git-numstat/issues"
},
"homepage": "https://github.com/codevey/parse-git-numstat#readme",
"dependencies": {
"dayjs": "^1.8.20"
},
"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",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"standard-version": "^7.1.0"
}
}