This repository has been archived by the owner on Nov 9, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
61 lines (61 loc) · 2.18 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
{
"private": true,
"name": "beemo-root",
"scripts": {
"beemo": "node packages/cli/lib/bin.js",
"docs": "cd website && yarn run start",
"setup": "yarn run build",
"check": "yarn run type && yarn run test && yarn run lint",
"build": "packemon build --addEngines",
"pack": "NODE_ENV=production packemon pack --addEngines --declaration=standard",
"clean": "packemon clean",
"coverage": "yarn run test --coverage",
"lint": "yarn run beemo eslint",
"test": "yarn run beemo jest",
"test:cli:brand": "node packages/cli/tests/brandedBinary.js",
"test:int:cli": "yarn run beemo run-script run-integration-tests --type=cli --workspaces=\"@beemo/driver-*\"",
"test:int:fail": "yarn run beemo run-script run-integration-tests --type=fail --workspaces=\"@beemo/driver-*\"",
"test:int:pass": "yarn run beemo run-script run-integration-tests --type=pass --workspaces=\"@beemo/driver-*\"",
"format": "yarn run beemo prettier",
"prerelease": "yarn run pack && yarn run check",
"release": "yarn prerelease && lerna version --conventional-commits --changelog-preset conventional-changelog-beemo --create-release github --push && lerna publish from-git",
"release:bump": "yarn run beemo run-script bump-peer-deps",
"type": "yarn run beemo typescript --build",
"task:args": "ts-node packages/local/src/bins/extractOptionList.ts"
},
"devDependencies": {
"@types/eslint": "^8.4.1",
"@types/fs-extra": "^9.0.13",
"@types/is-glob": "^4.0.2",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.179",
"@types/node": "^16.11.26",
"@types/prettier": "^2.4.4",
"@types/react": "^17.0.39",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.9",
"conventional-changelog-beemo": "^2.1.0",
"lerna": "^4.0.0",
"packemon": "^1.14.0",
"ts-node": "^10.5.0",
"typescript": "^4.6.2",
"webpack": "^5.69.1"
},
"resolutions": {
"chalk": "^4.0.0",
"debug": "^4.3.2"
},
"workspaces": [
"packages/*",
"website"
],
"engines": {
"node": ">=12.17.0",
"npm": ">=6.13.0"
},
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/milesjohnson"
},
"packageManager": "yarn@3.2.0"
}