-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "@carbon-tools/root",
"private": true,
"scripts": {
"lerna:build": "lerna run build",
"lerna:version": "lerna version --conventional-commits --yes",
"lerna:deploy:ci": "lerna publish from-package --yes",
"lerna:deploy:ci:canary": "lerna publish --yes --canary --preid beta --message 'chore: release new canary versions'",
"lerna:run:gather": "lerna run run:gather",
"lerna:run:dev": "lerna run run:dev",
"lint": "eslint --quiet --fix",
"test": "tap --allow-incomplete-coverage --node-arg=--require=ts-node/register/transpile-only",
"posttest": "tap --allow-incomplete-coverage --coverage-report=html --coverage-report=cobertura"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "28.0.1",
"@types/eslint": "8.56.12",
"@types/tap": "15.0.12",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "6.21.0",
"cpy-cli": "5.0.0",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.2.1",
"lerna": "8.1.9",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "3.29.5",
"rollup-plugin-typescript2": "0.36.0",
"tap": "20.0.3",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.6.3"
},
"workspaces": [
"packages/*"
],
"volta": {
"node": "22.11.0",
"npm": "10.9.0"
}
}