forked from mateodelnorte/meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.62 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
{
"name": "meta",
"version": "0.0.0-development",
"description": "tool for turning many repos into a meta repo. why choose many repos or a monolithic repo, when you can have both with a meta repo?",
"bin": {
"meta": "./bin/meta"
},
"scripts": {
"clean-global-all": "npm run clean-global-loop-commands && npm run clean-global-loop-installs && npm run clean-global-meta-commands && npm run clean-global-meta-installs",
"clean-global-loop-commands": "rm -f `npm config get prefix`/bin/*loop*",
"clean-global-loop-installs": "rm -rf `npm config get prefix`/lib/node_modules/*loop*",
"clean-global-meta-commands": "rm -f `npm config get prefix`/bin/*meta*",
"clean-global-meta-installs": "rm -rf `npm config get prefix`/lib/node_modules/*meta*",
"clean": "meta-npm clean",
"commit": "git-cz",
"completion": "tabtab install",
"lint": "prettier --write \"bin/*\" index.js",
"meta-install": "meta-npm install --exclude meta",
"meta-link-all-global": "meta-npm link --all && npm link",
"meta-link-all": "meta-npm link --all",
"meta-link-global": "meta-npm link && npm link",
"meta-link": "meta-npm link",
"test": "jest --config jest.json --coverage",
"test:coverage": "jest --config jest.json --coverage",
"test:watch": "jest --config jest.json --watch"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mateodelnorte/meta.git"
},
"keywords": [
"git",
"repo",
"repository",
"repositories",
"meta",
"metarepo",
"metarepository",
"project",
"many"
],
"author": "[email protected]",
"contributors": [
"Alec Larson"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mateodelnorte/meta/issues"
},
"homepage": "https://github.com/mateodelnorte/meta#readme",
"dependencies": {
"chalk": "2.4.2",
"commander": "mateodelnorte/commander.js",
"debug": "4.1.1",
"meta-git": "1.1.2",
"meta-init": "1.2.3",
"meta-loop": "1.2.2",
"meta-project": "2.2.6",
"tabtab": "3.0.2",
"tildify": "2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"apply-template": "^4.0.1",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.4.1",
"jest": "^24.8.0",
"meta-gh": "^1.1.0",
"meta-npm": "^1.2.0",
"meta-yarn": "^1.1.0",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.0"
}
}