-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.04 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
{
"name": "mrgit",
"version": "2.1.0",
"description": "A tool for managing projects build using multiple repositories.",
"keywords": [
"git",
"repository",
"submodule",
"package",
"multi-repository",
"multi-repo",
"lerna",
"yarn",
"workspaces"
],
"main": "index.js",
"dependencies": {
"chalk": "^4.1.0",
"cli-table": "^0.3.1",
"generic-pool": "^3.7.1",
"meow": "^9.0.0",
"minimatch": "^4.0.0",
"minimist": "^1.2.5",
"minimist-options": "^4.1.0",
"shelljs": "^0.8.4",
"upath": "^2.0.0"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-bump-year": "^44.0.0",
"@ckeditor/ckeditor5-dev-ci": "^44.0.0",
"@ckeditor/ckeditor5-dev-release-tools": "^44.0.0",
"coveralls": "^3.1.1",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-config-ckeditor5": "^5.3.2",
"husky": "^8.0.2",
"lint-staged": "^10.2.11",
"listr2": "^6.5.0",
"mocha": "^9.0.0",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"sinon": "^9.0.3"
},
"resolutions": {
"string-width": "^4.0.0",
"wrap-ansi": "^7.0.0",
"semver": "^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cksource/mrgit.git"
},
"engines": {
"node": ">=18.0.0"
},
"author": "CKSource (http://cksource.com/)",
"license": "MIT",
"bugs": "https://github.com/cksource/mrgit/issues",
"homepage": "https://github.com/cksource/mrgit#readme",
"scripts": {
"postinstall": "node ./scripts/postinstall.js",
"test": "mocha tests --recursive",
"coverage": "nyc --reporter=lcov --reporter=text-summary yarn run test",
"lint": "eslint --quiet \"**/*.{js,mjs}\"",
"changelog": "node ./scripts/changelog.mjs",
"release:prepare-packages": "node ./scripts/preparepackages.mjs",
"release:publish-packages": "node ./scripts/publishpackages.mjs"
},
"bin": {
"mrgit": "./index.js"
},
"files": [
"index.js",
"lib",
"README.md",
"CHANGELOG.md"
],
"lint-staged": {
"**/*.{js,mjs}": [
"eslint --quiet"
]
}
}