-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "@kickass-dev/gitlab-cli",
"version": "1.3.0",
"private": false,
"description": "Simple cli tool for using gitlab api",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --max-warnings=0 index.js src"
},
"bin": {
"gitlab-cli": "./bin.js",
"gitlabcli": "./bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/capJavert/gitlab-cli.git"
},
"keywords": [
"cli",
"gitlab",
"node",
"api",
"manage"
],
"author": "capJavert",
"license": "MIT",
"bugs": {
"url": "https://github.com/capJavert/gitlab-cli/issues"
},
"homepage": "https://github.com/capJavert/gitlab-cli#readme",
"dependencies": {
"inquirer": "^7.3.3",
"node-fetch": "^2.6.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^4.2.5"
},
"volta": {
"node": "16.13.2"
}
}