-
Notifications
You must be signed in to change notification settings - Fork 669
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.49 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.49 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"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 && cspell \"**/*.{md,ts,js,marko}\"",
"prepare": "husky && patch-package && npm run build-babel-types -w @marko/compiler",
"report": "open ./coverage/lcov-report/index.html",
"test": "mocha",
"test:update": "UPDATE_EXPECTATIONS=1 mocha --update"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/code-frame": "^7.29.0",
"@babel/core": "^7.29.0",
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.0",
"@babel/plugin-syntax-typescript": "^7.28.6",
"@babel/plugin-transform-modules-commonjs": "^7.28.6",
"@babel/plugin-transform-typescript": "^7.28.6",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@babel/register": "^7.28.6",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@ebay/browserslist-config": "^2.13.0",
"@eslint/js": "^10.0.1",
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-virtual": "^3.0.2",
"@types/babel__code-frame": "^7.27.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/js-beautify": "^1.14.3",
"@types/jsdom": "^28.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.3",
"~ts": "file:scripts/babel-register.js",
"babel-plugin-minprops": "^2.0.1",
"bluebird": "^3.7.2",
"c8": "^11.0.0",
"chai": "^4.4.1",
"cross-env": "^10.1.0",
"cspell": "^9.7.0",
"diffable-html": "^6.0.1",
"esbuild": "^0.27.3",
"eslint": "^10.0.2",
"eslint-formatter-unix": "^9.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"express": "^5.2.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"it-fails": "^1.0.9",
"js-beautify": "^1.15.4",
"jsdom": "^28.1.0",
"jsdom-context-require": "^5.2.8",
"kleur": "^4.1.5",
"lint-staged": "^16.3.2",
"mocha": "^11.7.5",
"mocha-autotest": "^1.1.3",
"mocha-snap": "^5.0.1",
"patch-package": "^8.0.1",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.2",
"pretty-format": "^30.2.0",
"rolldown": "^1.0.0-rc.7",
"rollup": "^4.59.0",
"table": "^6.9.0",
"through": "^2.3.8",
"through2": "^4.0.2",
"tiny-glob": "^0.2.9",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}