forked from cksource/mrgit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.73 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.73 KB
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
{
"name": "mrgit",
"version": "1.0.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": "^2.4.2",
"cli-table": "^0.3.1",
"generic-pool": "^3.7.1",
"meow": "^5.0.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"minimist-options": "^4.0.1",
"shelljs": "^0.8.3",
"upath": "^1.1.2"
},
"devDependencies": {
"@ckeditor/ckeditor5-dev-env": "^16.0.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-ckeditor5": "^2.0.0",
"husky": "^3.0.1",
"istanbul": "^0.4.5",
"lint-staged": "^9.2.0",
"mocha": "^6.2.0",
"mockery": "^2.1.0",
"sinon": "^7.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/cksource/mrgit.git"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"author": "CKSource (http://cksource.com/)",
"license": "MIT",
"bugs": "https://github.com/cksource/mrgit/issues",
"homepage": "https://github.com/cksource/mrgit#readme",
"scripts": {
"test": "mocha tests --recursive",
"coverage": "istanbul cover _mocha tests -- --recursive",
"lint": "eslint --quiet '**/*.js'",
"changelog": "node ./scripts/changelog.js",
"release:bump-version": "node ./scripts/bump-version.js",
"release:publish": "node ./scripts/publish.js"
},
"bin": {
"mrgit": "./index.js"
},
"files": [
"index.js",
"lib"
],
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}