-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.02 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.0.0",
"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.11.0",
"ansi-escapes": "^4.3.2",
"await-to-js": "^3.0.0",
"chalk": "^4.1.2",
"cli-progress": "^3.10.0",
"death": "^1.1.0",
"dotenv": "^16.0.0",
"execa": "^5.1.1",
"fs-extra": "^10.0.1",
"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.4.0"
},
"devDependencies": {
"@types/ansi-escape-sequences": "^4.0.0",
"@types/cli-progress": "^3.9.2",
"@types/death": "^1.1.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/jest-when": "^3.5.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.181",
"@types/node": "^16.11.26",
"@types/prompts": "^2.0.14",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"jest": "27.5.1",
"jest-when": "3.5.1",
"pkg": "5.5.2",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"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"
]
}
}