This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
forked from microsoft/beachball
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.38 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
{
"name": "beachball",
"version": "2.12.1",
"description": "The Sunniest Semantic Version Bumper",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/beachball"
},
"homepage": "https://microsoft.github.io/beachball/",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"beachball": "./bin/beachball.js"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "tsc",
"change": "node ./lib/cli.js change",
"checkchange": "node ./lib/cli.js check",
"docs": "vuepress dev docs --host localhost",
"docs:build": "vuepress build docs",
"format": "prettier --write '**/*'",
"pub": "node ./lib/cli.js publish",
"release": "node ./lib/cli.js publish -y",
"release:docs": "yarn docs:build && yarn gh-pages -d docs/.vuepress/dist --dotfiles",
"start": "tsc -w --preserveWatchOutput",
"test": "yarn test:unit && yarn test:e2e",
"test:e2e": "jest --runInBand --config jest.e2e.js",
"test:unit": "jest --config jest.config.js",
"test:watch": "jest --watch",
"update-snapshots": "jest --config jest.config.js --updateSnapshot"
},
"dependencies": {
"cosmiconfig": "^6.0.0",
"execa": "^4.0.3",
"fs-extra": "^8.0.1",
"git-url-parse": "^11.1.2",
"glob": "^7.1.4",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"p-limit": "^3.0.2",
"prompts": "~2.1.0",
"semver": "^6.1.1",
"toposort": "^2.0.2",
"uuid": "^8.3.1",
"workspace-tools": "^0.16.2",
"yargs-parser": "^20.2.4"
},
"devDependencies": {
"@types/cosmiconfig": "6.0.0",
"@types/execa": "^2.0.0",
"@types/fs-extra": "^8.0.0",
"@types/git-url-parse": "^9.0.0",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.149",
"@types/minimatch": "^3.0.3",
"@types/node": "^12.0.0",
"@types/p-limit": "^2.2.0",
"@types/prompts": "~2.0.0",
"@types/semver": "^6.0.0",
"@types/tmp": "^0.1.0",
"@types/toposort": "^2.0.3",
"@types/uuid": "^8.0.0",
"@types/yargs-parser": "^15.0.0",
"find-free-port": "~2.0.0",
"gh-pages": "^3.1.0",
"jest": "^27.0.6",
"ncp": "^2.0.0",
"prettier": "~2.3.2",
"tmp": "^0.1.0",
"ts-jest": "^27.0.3",
"typescript": "^3.7.3",
"verdaccio": "^4.2.2",
"verdaccio-memory": "^8.0.0",
"vuepress": "^1.5.3",
"vuepress-plugin-mermaidjs": "^1.6.0"
}
}