-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
92 lines (92 loc) · 2.57 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
87
88
89
90
91
92
{
"name": "beachball",
"version": "2.49.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": ">=14.0.0"
},
"files": [
"bin",
"lib/!(__*)",
"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 '**/*'",
"prepare": "husky install",
"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"
},
"lint-staged": {
"*": [
"prettier --write"
]
},
"dependencies": {
"cosmiconfig": "^8.3.6",
"execa": "^5.0.0",
"fs-extra": "^11.1.1",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"p-graph": "^1.1.2",
"p-limit": "^3.0.2",
"prompts": "^2.4.2",
"semver": "^7.0.0",
"toposort": "^2.0.2",
"workspace-tools": "^0.38.0",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@jest/globals": "^29.0.0",
"@types/fs-extra": "^11.0.0",
"@types/lodash": "^4.14.191",
"@types/minimatch": "^5.0.0",
"@types/node": "^14.0.0",
"@types/prompts": "^2.4.2",
"@types/semver": "^7.3.13",
"@types/tmp": "^0.2.3",
"@types/toposort": "^2.0.3",
"@types/yargs-parser": "^21.0.0",
"find-free-port": "^2.0.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"jest-mock": "^29.0.0",
"lint-staged": "^12.0.0",
"normalized-tmpdir": "^1.0.1",
"prettier": "~2.8.4",
"strip-ansi": "^6.0.1",
"tmp": "^0.2.1",
"ts-jest": "^29.0.0",
"typescript": "~5.2.0",
"verdaccio": "^4.13.2",
"verdaccio-auth-memory": "^10.2.0",
"verdaccio-memory": "^10.3.0",
"vuepress": "^1.9.8",
"vuepress-plugin-mermaidjs": "^1.9.1"
}
}