-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.66 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gitzz",
"version": "0.2.5-beta",
"description": "Easy get commit data from Github with gitzz",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha test/**/*.ts --r ts-node/register",
"build": "tsc",
"lint": "eslint \"lib/**/*.ts\" --fix",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist",
"lib"
],
"keywords": [
"git",
"github",
"commit",
"stat"
],
"author": {
"name": "devkwonsehoon",
"email": "[email protected]",
"url": "https://velog.io/@devkwonsehoon"
},
"homepage": "https://github.com/devkwonsehoon/gitzz",
"repository": {
"type": "git",
"url": "https://github.com/devkwonsehoon/gitzz.git"
},
"bugs": {
"url": "https://github.com/devkwonsehoon/gitzz/issues",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"axios": "^0.25.0",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.10.7"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^17.0.18",
"babel-eslint": "^10.1.0",
"chai": "^4.3.7",
"coveralls": "^3.1.1",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.ts",
"lib/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
}
}