-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.95 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
{
"name": "@andreclinio/gitlab-cli",
"version": "0.7.0",
"description": "Simple command line interface for GitLab",
"keywords": [
"git",
"gitlab"
],
"author": {
"name": "André Luiz Clinio (andre.clinio@gmail.com)",
"email": "andre.clinio@gmail.com"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/andreclinio/gitlab-cli.git"
},
"main": "main.js",
"bin": "./build/main.js",
"scripts": {
"test": "jest --config jestconfig.json",
"package": "pkg . --output gitlab-cli",
"build": "tsc",
"lint": "eslint . --config eslint.config.mjs",
"lint-fix": "eslint . --config eslint.config.mjs --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"release": "release-it",
"release-beta": "release-it --preRelease=beta",
"snapcraft": "rm -f *.snap && npm run build && snapcraft"
},
"release-it": {
"git": {
"commitMessage": "commit for release ${version}",
"tagAnnotation": "tag for new ${version}",
"commit": true
},
"npm": {
"publish": false
}
},
"pkg": {
"scripts": "build/**/*.js"
},
"files": [
"build/**/*"
],
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/axios": "^0.14.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.7",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^27.4.3",
"prettier": "^3.3.3",
"release-it": "^14.11.8",
"ts-jest": "^27.0.7",
"typescript": "^4.7.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"axios": "^1.7.4",
"moment": "^2.30.1",
"rxjs": "^7.4.0",
"yargs": "^17.2.1"
}
}