-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"name": "@jsenv/workflow",
"version": "0.0.1",
"private": true,
"description": "Automate workflows in projects using JavaScript",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsenv/workflow"
},
"workspaces": [
"./packages/*"
],
"exports": {
"./*": "./*"
},
"volta": {
"node": "22.3.0"
},
"scripts": {
"eslint": "npx eslint .",
"test": "npm run test --workspaces --if-present",
"monorepo:sync_packages_versions": "node ./scripts/sync_packages_versions.mjs",
"monorepo:publish": "node ./scripts/publish_packages.mjs",
"prettier": "prettier --write .",
"monorepo:upgrade_versions": "node ./scripts/upgrade_external_versions.mjs",
"playwright:install": "npx playwright install-deps && npx playwright install"
},
"devDependencies": {
"@jsenv/assert": "4.4.0",
"@jsenv/eslint-config-relax": "1.1.1",
"@jsenv/github-check-run": "./packages/github-check-run",
"@jsenv/log": "3.5.2",
"@jsenv/monorepo": "./packages/monorepo",
"@jsenv/test": "3.4.1",
"eslint": "9.9.0",
"playwright": "1.46.0",
"prettier": "3.3.3"
}
}