forked from microsoft/beachball
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.46 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
85
86
{
"name": "beachball",
"version": "2.31.4",
"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"
},
"files": [
"bin",
"lib/!(__*)"
],
"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": "jest",
"test:all": "yarn test:unit && yarn test:func && yarn test:e2e",
"test:e2e": "jest --selectProjects e2e",
"test:func": "jest --selectProjects functional",
"test:unit": "jest --selectProjects unit",
"test:watch": "jest --watch",
"update-snapshots": "yarn test:unit -u && yarn test:func -u && yarn test:e2e -u"
},
"dependencies": {
"cosmiconfig": "^7.0.0",
"execa": "^5.0.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"p-limit": "^3.0.2",
"prompts": "^2.4.2",
"semver": "^7.0.0",
"toposort": "^2.0.2",
"uuid": "^9.0.0",
"workspace-tools": "^0.28.0",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@jest/globals": "28.1.3",
"@types/cosmiconfig": "6.0.0",
"@types/execa": "2.0.0",
"@types/fs-extra": "9.0.13",
"@types/lodash": "4.14.185",
"@types/minimatch": "3.0.5",
"@types/node": "12.20.55",
"@types/p-limit": "2.2.0",
"@types/prompts": "2.0.14",
"@types/semver": "7.3.12",
"@types/tmp": "0.2.3",
"@types/toposort": "2.0.3",
"@types/uuid": "8.3.4",
"@types/yargs-parser": "21.0.0",
"find-free-port": "2.0.0",
"gh-pages": "4.0.0",
"jest": "28.1.3",
"jest-mock": "28.1.3",
"prettier": "2.7.1",
"strip-ansi": "6.0.1",
"tmp": "0.2.1",
"ts-jest": "28.0.8",
"typescript": "4.3.5",
"verdaccio": "4.13.2",
"verdaccio-auth-memory": "10.2.0",
"verdaccio-memory": "10.3.0",
"vuepress": "1.9.7",
"vuepress-plugin-mermaidjs": "1.9.1"
}
}