-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.99 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
84
85
86
{
"name": "@cego/gitte",
"version": "1.4.1",
"description": "Git automation and action execution across a list of projects",
"main": "bin/main.js",
"bin": {
"gitte": "bin/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cego/gitte.git"
},
"keywords": [
"git",
"automation",
"action",
"execution",
"microservice"
],
"author": "Mads Jon Nielsen <madsjon@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cego/gitte/issues"
},
"homepage": "https://github.com/cego/gitte#readme",
"dependencies": {
"ajv": "8.12.0",
"ansi-escapes": "4.3.2",
"await-to-js": "3.0.0",
"chalk": "4.1.2",
"cli-progress": "3.12.0",
"death": "1.1.0",
"dotenv": "16.4.5",
"execa": "5.1.1",
"fs-extra": "10.1.0",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"prompts": "2.4.2",
"source-map-support": "0.5.21",
"tildify": "2.0.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/ansi-escape-sequences": "4.0.4",
"@types/cli-progress": "3.11.5",
"@types/death": "1.1.5",
"@types/fs-extra": "9.0.13",
"@types/jest": "29.5.11",
"@types/jest-when": "3.5.5",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.14.202",
"@types/node": "20.11.20",
"@types/prompts": "2.4.9",
"@types/yargs": "17.0.32",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"jest-when": "3.6.0",
"pkg": "5.8.1",
"prettier": "2.8.8",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"scripts": {
"eslint": "eslint . --max-warnings=0",
"prettier": "prettier -c .",
"prettier:fix": "prettier -c --write .",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint && npm run prettier:fix",
"build": "rm -f src/*.js src/*.d.ts && tsc",
"test": "jest",
"test:coverage": "jest --coverage"
},
"pkg": {
"assets": [
"package.json"
],
"scripts": [
"bin/**/*.js",
"src/**/*.js"
]
}
}