-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.49 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
{
"name": "gitlab-cli-build-monitor",
"version": "1.1.1",
"description": "cli tool for monitoring gitlab builds",
"homepage": "https://github.com/Binsabbar/gitlab-cli-build-monitor#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Binsabbar/gitlab-cli-build-monitor"
},
"engines": {
"node": ">=8"
},
"files": [
"src/**/*.js",
"package.json"
],
"main": "src/bin/index.js",
"preferGlobal": true,
"bin": {
"gitlab-cli-build-monitor": "src/bin/index.js"
},
"scripts": {
"test": "jest --testPathIgnorePatterns=/__tests__/__integration__/",
"test:all": "jest",
"test:integration": "jest /__tests__/__integration__/",
"coverage": "npm test -- --collect-coverage",
"lint": "./node_modules/eslint/bin/eslint.js ."
},
"keywords": [
"cicd",
"gitlab",
"monitor",
"builds"
],
"author": "Mohammed Binsabbar",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/jest-when": "^2.7.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"jest": "^25.2.7",
"jest-extended": "^0.11.5",
"jest-when": "^2.7.1"
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.0.0",
"cli-table3": "^0.6.0",
"js-yaml": "^3.13.1",
"moment": "^2.24.0",
"yargs": "^15.3.1"
}
}