mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
62 lines
2.0 KiB
JSON
62 lines
2.0 KiB
JSON
{
|
|
"name": "fluurt",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.0.2",
|
|
"@commitlint/config-conventional": "^16.0.0",
|
|
"@marko/compiler": "^5.19.1",
|
|
"@rollup/plugin-replace": "3.0.1",
|
|
"@types/jsdom": "^16.2.14",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^17.0.8",
|
|
"@typescript-eslint/eslint-plugin": "^5.9.1",
|
|
"@typescript-eslint/parser": "^5.9.1",
|
|
"benchmark": "^2.1.4",
|
|
"chalk": "^5.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.14.31",
|
|
"esbuild-register": "^3.3.2",
|
|
"eslint": "^8.6.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"fixpack": "^4.0.0",
|
|
"husky": "^7.0.4",
|
|
"jsdom": "^19.0.0",
|
|
"jsdom-context-require": "^4.0.4",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^12.1.7",
|
|
"magic-string": "^0.25.7",
|
|
"mocha": "^9.2.2",
|
|
"mocha-snap": "^4.2.4",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.5.1",
|
|
"pretty-format": "^27.4.6",
|
|
"rollup": "^2.63.0",
|
|
"rollup-plugin-hypothetical": "^2.1.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"table": "^6.8.0",
|
|
"tiny-glob": "^0.2.9",
|
|
"typescript": "4.5.4"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "npm run -ws build",
|
|
"build:types": "npm run -ws build:types",
|
|
"ci:test": "nyc npm test -- --forbid-only",
|
|
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
|
|
"lint": "npm run build:types && npm run lint:eslint && npm run lint:prettier -- -l && fixpack",
|
|
"lint:eslint": "eslint -f visualstudio .",
|
|
"lint:prettier": "prettier '**/*{.ts,.js,.json,.md,.yml,rc}'",
|
|
"prepare": "husky install",
|
|
"presize": "npm run -ws build:js",
|
|
"release": "npm exec -ws -- semantic-release",
|
|
"report": "open ./coverage/lcov-report/index.html",
|
|
"size": "node -r esbuild-register ./utilities/sizes",
|
|
"size:write": "npm run size -- --write && git add .sizes.json",
|
|
"test": "mocha './packages/*/src/**/__tests__/*.test.ts'",
|
|
"test:inspect": "npm test -- --inspect",
|
|
"test:update": "npm test -- --update"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|