-
Notifications
You must be signed in to change notification settings - Fork 644
/
package.json
77 lines (77 loc) · 2.78 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
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
{
"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: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 && tsc -b tsconfig.build.json",
"build:sizes": "node -r ~ts scripts/sizes",
"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.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@babel/register": "^7.25.9",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@ebay/browserslist-config": "^2.10.0",
"@eslint/js": "^9.13.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-virtual": "^3.0.2",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.9",
"@types/node": "^22.8.4",
"babel-plugin-minprops": "^2.0.1",
"bluebird": "^3.7.2",
"c8": "^10.1.2",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"diffable-html": "^5.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.13.0",
"eslint-formatter-unix": "^8.40.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"express": "^4.21.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"it-fails": "^1.0.8",
"jsdom": "^25.0.1",
"jsdom-context-require": "^5.2.4",
"kleur": "^4.1.5",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"mocha-autotest": "^1.1.2",
"mocha-snap": "^5.0.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"pretty-format": "^29.7.0",
"rollup": "^4.24.3",
"table": "^6.8.2",
"through": "^2.3.8",
"through2": "^4.0.2",
"tiny-glob": "^0.2.9",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"~ts": "file:scripts/babel-register.js"
}
}