-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 2.16 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
{
"name": "multi-semantic-release-monorepo",
"version": "0.0.0",
"description": "Management release for monorepo using multi semantic releases",
"main": "index.js",
"workspaces": [
"packages/*",
"!packages/lib/**"
],
"scripts": {
"transpile": "npm run tr-lib && npm run tr-app",
"tr-lib": "babel --delete-dir-on-start --verbose --out-dir packages/lib/dist --copy-files packages/lib/lib",
"tr-app": "babel --delete-dir-on-start --verbose --out-dir packages/app/dist --copy-files packages/app/lib",
"commit": "git-cz",
"postinstall": "lerna bootstrap",
"presemantic-release": "npm i && npm run transpile",
"presemantic-release-local": "npm i && npm run transpile",
"semantic-release": "multi-semantic-release --sequential-init --debug --first-parent",
"semantic-release-local": "multi-semantic-release --sequential-init --debug --first-parent --no-ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davikawasaki/multi-semantic-release-monorepo.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/davikawasaki/multi-semantic-release-monorepo/issues"
},
"homepage": "https://github.com/davikawasaki/multi-semantic-release-monorepo#readme",
"devDependencies": {
"@babel/cli": "7.12.1",
"@babel/core": "7.12.3",
"@babel/plugin-proposal-class-properties": "7.12.1",
"@babel/plugin-proposal-decorators": "7.12.1",
"@babel/plugin-proposal-optional-chaining": "7.12.1",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/register": "7.12.1",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/prompt": "11.0.0",
"@qiwi/multi-semantic-release": "3.13.2",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.0",
"@semantic-release/npm": "7.0.9",
"@semantic-release/release-notes-generator": "9.0.1",
"babel-eslint": "10.1.0",
"commitizen": "4.2.2",
"git-cz": "4.7.6",
"husky": "4.3.6",
"lerna": "3.22.1",
"semantic-release": "17.3.0"
}
}