marko/package.json

82 lines
3.1 KiB
JSON

{
"name": "marko-project",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:lint": "eslint --format unix . && prettier . --check --with-node-modules --log-level=warn",
"@ci:release": "npm run build && node scripts/pkg-override && changeset publish && node scripts/pkg-override && npm ci",
"@ci:release-alias": "node -r ~ts scripts/publish-alias.ts",
"@ci:test": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" MARKO_DEBUG=1 c8 npm test",
"@ci:version": "npm run build && npm run format && changeset version && npm i --package-lock-only",
"build": "npm run build --ws && npm run build:types",
"build:sizes": "node -r ~ts scripts/sizes",
"build:types": "npx tsc --noEmit packages/runtime-tags/index.d.ts && npx tsc --noEmit packages/runtime-class/index.d.ts && tsc -b tsconfig.build.json",
"change": "changeset add",
"compile": "node -r ~ts scripts/inspect-compiled-output.ts",
"format": "eslint --format unix --fix .; prettier . --write --with-node-modules --log-level=warn",
"lint": "eslint --format unix . && prettier . --check --with-node-modules --log-level=warn",
"prepare": "husky",
"report": "open ./coverage/lcov-report/index.html",
"test": "mocha",
"test:update": "UPDATE_EXPECTATIONS=1 mocha --update"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.3",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@ebay/browserslist-config": "^2.12.0",
"@eslint/js": "^9.39.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-virtual": "^3.0.2",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/js-beautify": "^1.14.3",
"@types/jsdom": "^27.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.10.1",
"~ts": "file:scripts/babel-register.js",
"babel-plugin-minprops": "^2.0.1",
"bluebird": "^3.7.2",
"c8": "^10.1.3",
"chai": "^4.4.1",
"cross-env": "^10.1.0",
"diffable-html": "^6.0.1",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"eslint-formatter-unix": "^9.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"express": "^5.1.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"it-fails": "^1.0.9",
"js-beautify": "^1.15.4",
"jsdom": "^27.2.0",
"jsdom-context-require": "^5.2.7",
"kleur": "^4.1.5",
"lint-staged": "^16.2.6",
"mocha": "^11.7.5",
"mocha-autotest": "^1.1.3",
"mocha-snap": "^5.0.1",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"pretty-format": "^30.2.0",
"rollup": "^4.53.2",
"table": "^6.9.0",
"through": "^2.3.8",
"through2": "^4.0.2",
"tiny-glob": "^0.2.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4"
}
}