-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "@shibayu36/merged-pr-stat",
"description": "A tool to create merged PullRequest statistics",
"version": "0.4.0",
"author": {
"name": "shibayu36",
"email": "[email protected]",
"url": "https://github.com/shibayu36"
},
"bin": {
"merged-pr-stat": "bin/merged-pr-stat.js"
},
"bugs": {
"url": "https://github.com/shibayu36/merged-pr-stat/issues"
},
"dependencies": {
"commander": "^6.0.0",
"csv-stringify": "^5.5.1",
"date-fns": "^2.15.0",
"graphql": "^15.3.0",
"graphql-request": "^3.0.0",
"mathjs": "^7.1.0",
"underscore": "^1.10.2"
},
"devDependencies": {
"@types/jest": "^26.0.9",
"@types/mathjs": "^6.0.5",
"@types/node": "^14.0.27",
"@types/underscore": "^1.10.19",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"ts-loader": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"files": [
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md",
"bin",
"dist"
],
"homepage": "https://github.com/shibayu36/merged-pr-stat#readme",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/shibayu36/merged-pr-stat.git"
},
"scripts": {
"build": "webpack",
"exec": "npm run --silent build && node dist/index.js",
"lint": "eslint . --ext 'ts,js'",
"lint:fix": "eslint . --fix --ext 'ts,js'",
"test": "jest"
}
}