-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.05 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
{
"name": "mrepo",
"description": "Awesome Typescript Monorepo Generator",
"version": "0.8.1",
"private": true,
"scripts": {
"build": "npx tsc -b tsconfig.build.json",
"build:cli": "yarn build && yarn unlink_ && yarn link_",
"postbuild": "cpy ./templates/**/* ./lib --parents",
"rebuild": "yarn clean && yarn build",
"clean": "npx rimraf \"./lib/!(img|.npmrc|LICENSE|package.json|README.md)**\"",
"commit_": "git-cz",
"link_": "cd ./lib && npm link",
"unlink_": "cd ./lib && npm unlink",
"prebuild": "npm run clean",
"prerelease": "yarn build && yarn test",
"release": "sh ./scripts/release.sh",
"postrelease": "sh ./scripts/post-release.sh",
"test": "npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zMotivat0r/mrepo.git"
},
"keywords": [],
"author": {
"name": "Michael Yali",
"email": "mihon4ik@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zMotivat0r/mrepo/issues"
},
"homepage": "https://github.com/zMotivat0r/mrepo#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"releaseTag": "latest"
},
"devDependencies": {
"@types/find-config": "1.0.1",
"@types/folder-hash": "4.0.1",
"@types/fs-extra": "9.0.13",
"@types/jest": "26.0.20",
"@types/jsesc": "2.5.1",
"@types/node": "14.14.33",
"commitizen": "4.2.3",
"conventional-changelog-cli": "2.1.1",
"cpy-cli": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"jest": "26.6.3",
"ts-jest": "26.5.3",
"typescript": "3.9.9",
"version-bump-prompt": "6.1.0"
},
"dependencies": {
"@nestled/util": "2.3.8",
"ajv": "7.2.1",
"chalk": "4.1.0",
"commander": "7.1.0",
"cpx": "1.5.0",
"current-git-branch": "1.1.0",
"dashify": "2.0.0",
"find-config": "1.0.0",
"folder-hash": "4.0.1",
"fs-extra": "10.0.0",
"json": "10.0.0",
"node-emoji": "1.10.0",
"npmlog": "4.1.2",
"rimraf": "3.0.2",
"sao": "1.7.1",
"symlink-dir": "5.0.1"
}
}