-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.24 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
78
79
80
81
82
83
{
"name": "bighut-relabel",
"version": "1.5.1",
"description": "Automatically analyze and manage pull requests on GitHub.",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=12.18.3"
},
"files": [
"dist"
],
"dependencies": {
"@octokit/rest": "^18.12.0",
"axios": "^0.23.0",
"chalk": "^4.1.2",
"node-cache": "^5.1.2",
"queue": "^6.0.2",
"string-format": "^2.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/chalk": "^2.2.0",
"@types/mocha": "^8.0.3",
"@types/node": "^14.0.27",
"@types/string-format": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"eslint": "^7.13.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-sort-exports": "^0.6.0",
"eslint-plugin-unused-imports": "^1.1.5",
"memory-streams": "^0.1.3",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"scripts": {
"build": "rimraf dist/ && tsc",
"test": "mocha -r ts-node/register tests/*.ts tests/**/*.ts",
"nyc": "nyc --reporter=html mocha -r ts-node/register tests/*.ts tests/**/*.ts",
"coverage": "nyc --reporter=text-lcov mocha -r ts-node/register tests/*.ts tests/**/*.ts | ./node_modules/coveralls/bin/coveralls.js",
"eslint": "eslint src/ --ext ts"
},
"author": "Alexey Nemiro <alexey.nemiro@clearscale.com>",
"license": "MIT",
"keywords": [
"github",
"automation",
"management",
"analysis",
"labeler",
"relabel",
"analyzer",
"fix",
"autofix",
"devops",
"codereview",
"workflow",
"git workflow",
"git",
"pull requests",
"infrastructure"
],
"homepage": "https://github.com/sfm-tools/bighut-relabel#readme",
"bugs": {
"url": "https://github.com/sfm-tools/bighut-relabel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sfm-tools/bighut-relabel.git"
}
}