-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.75 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.75 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "beachball",
"version": "2.64.0",
"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": {
"beachball": "node ./lib/cli.js",
"build": "tsc",
"bump": "node ./lib/cli.js bump",
"change": "node ./lib/cli.js change",
"checkchange": "node ./lib/cli.js check",
"docs": "echo \"Run this from the docs folder instead\" && exit 1",
"docs:build": "echo \"Run this from the docs folder instead\" && exit 1",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky install",
"lint": "yarn lint:deps && yarn lint:code",
"lint:code": "eslint --color --max-warnings=0 src",
"lint:deps": "depcheck .",
"pub": "node ./lib/cli.js publish",
"release": "node ./lib/cli.js publish -y",
"release:docs": "echo \"Run this from the docs folder instead\" && exit 1",
"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": {
"@vercel/detect-agent": "^1.2.1",
"cosmiconfig": "^9.0.0",
"execa": "^5.0.0",
"minimatch": "^3.0.4",
"p-graph": "^1.1.2",
"p-limit": "^3.0.2",
"prompts": "^2.4.2",
"semver": "^7.0.0",
"workspace-tools": "^0.41.0",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@jest/globals": "^29.0.0",
"@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/yargs-parser": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@typescript-eslint/utils": "^5.0.0",
"depcheck": "^1.4.7",
"eslint": "^8.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-etc": "^2.0.3",
"get-port": "^5.0.0",
"husky": "^8.0.0",
"jest": "^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.2.6",
"typescript": "~5.2.0",
"verdaccio": "5.29.2",
"verdaccio-auth-memory": "10.2.2",
"verdaccio-memory": "10.3.2"
},
"resolutions": {
"@types/node": "^14.0.0",
"**/lodash": "4.17.23",
"**/body-parser/qs": "^6.14.2",
"**/express/qs": "^6.14.2",
"**/@cypress/request/qs": "^6.14.2",
"**/verdaccio/handlebars": "^4.7.9",
"**/verdaccio/js-yaml": "^4.1.0",
"**/verdaccio/validator": "^13.15.22",
"**/@verdaccio/config/js-yaml": "^4.1.0",
"**/@verdaccio/url/validator": "^13.15.22"
},
"rationale": {
"devDependencies": {
"ts-jest@29.2.6": "29.3.0 introduces type-fest v4 which requires node 16+",
"verdaccio-auth-memory@10.2.2": "node 18 required by newer version",
"verdaccio-memory@10.3.2": "node 18 required by newer version"
},
"resolutions": {
"**/lodash": "Unpin due to security issue",
"**/*/qs": "Unpin due to security issue",
"**/verdaccio/*": "Unpin due to security issues",
"**/@verdaccio/*/*": "Unpin due to security issues"
}
}
}