mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
59 lines
2.0 KiB
JSON
59 lines
2.0 KiB
JSON
{
|
|
"name": "fluurt",
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^14.1.0",
|
|
"@commitlint/config-conventional": "^14.1.0",
|
|
"@marko/compiler": "5.17.3",
|
|
"@rollup/plugin-replace": "3.0.0",
|
|
"@types/jsdom": "^16.2.13",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.11.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.3.0",
|
|
"@typescript-eslint/parser": "^5.3.0",
|
|
"chalk": "^4.1.2",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.13.12",
|
|
"esbuild-register": "^3.0.0",
|
|
"eslint": "^8.1.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"fixpack": "^4.0.0",
|
|
"husky": "^7.0.4",
|
|
"jsdom": "^18.0.1",
|
|
"jsdom-context-require": "^4.0.2",
|
|
"lerna": "^4.0.0",
|
|
"lint-staged": "^11.2.6",
|
|
"magic-string": "^0.25.7",
|
|
"mocha": "9.1.3",
|
|
"mocha-snap": "^4.0.3",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.4.1",
|
|
"pretty-format": "^27.3.1",
|
|
"rollup": "^2.59.0",
|
|
"rollup-plugin-esbuild-transform": "^1.1.1",
|
|
"rollup-plugin-hypothetical": "^2.1.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"table": "^6.7.2",
|
|
"typescript": "4.4.4"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "npm run -ws build",
|
|
"ci:test": "nyc npm run -ws test -- --forbid-pending --forbid-only",
|
|
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && (fixpack || true)",
|
|
"lint": "npm run -ws 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",
|
|
"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": "npm run -ws test",
|
|
"test:inspect": "npm run -ws test -- --inspect",
|
|
"test:update": "npm run -ws test -- --update"
|
|
},
|
|
"workspaces": [
|
|
"packages/*"
|
|
]
|
|
}
|