-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.17 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.17 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
{
"name": "parent",
"version": "2.7.0-next",
"private": true,
"workspaces": [
"dev-packages/*"
],
"scripts": {
"build": "lerna run build",
"check:all": "yarn install && yarn lint && yarn format:check && yarn headers:check && yarn test",
"clean": "lerna run clean",
"cli": "yarn --cwd dev-packages/cli",
"fix:all": "yarn lint:fix && yarn format && yarn headers:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"glsp": "node dev-packages/cli/dist/cli.js",
"headers:check": "yarn glsp checkHeaders .",
"headers:fix": "yarn glsp checkHeaders . --autoFix",
"lint": "eslint .",
"lint:ci": "yarn lint --output-file eslint_report.json --format json",
"lint:fix": "yarn lint --fix",
"prepare": "yarn run build",
"publish:latest": "lerna publish from-package --no-git-reset -y",
"publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes",
"test": "yarn --cwd dev-packages/cli test",
"test:ci": "yarn --cwd dev-packages/cli test:ci",
"test:e2e": "yarn --cwd dev-packages/cli test:e2e",
"watch": "yarn cli watch"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@stylistic/eslint-plugin": "^2.0.0",
"@tony.ganchev/eslint-plugin-header": "^3.1.1",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "22.x",
"@types/sinon": "^10.0.13",
"chai": "^4.3.7",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-chai-friendly": "^1.0.0",
"eslint-plugin-import-x": "^4.0.0",
"eslint-plugin-no-null": "^1.0.2",
"globals": "^15.0.0",
"ignore-styles": "^5.0.1",
"lerna": "^9.0.0",
"mocha": "^10.2.0",
"mocha-ctrf-json-reporter": "^0.0.9",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"sinon": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=22",
"yarn": ">=1.7.0 <2"
}
}