marko/package.json
2021-05-04 14:13:46 -07:00

67 lines
2.6 KiB
JSON

{
"name": "fluurt",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@commitlint/config-lerna-scopes": "^12.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@marko/compiler": "5.10.2",
"@rollup/plugin-replace": "2.4.1",
"@types/jsdom": "^16.2.7",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.33",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"fixpack": "^4.0.0",
"husky": "^5.1.3",
"jsdom": "^16.5.0",
"jsdom-context-require": "^2.0.1",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"magic-string": "^0.25.7",
"mocha": "8.3.0",
"mocha-autotest": "^1.1.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"pretty-format": "^26.6.2",
"rollup": "^2.41.0",
"rollup-plugin-hypothetical": "^2.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"table": "^6.0.7",
"ts-node": "^9.1.1",
"typescript": "4.2.3"
},
"private": true,
"scripts": {
"build": "tsc --build tsconfig.project.json && rollup -c --sourcemap",
"ci:report": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"ci:test": "nyc --reporter=text npm test",
"clean": "lerna clean && rm -rf ./packages/*/{dist,.tsbuildinfo}",
"format": "yarn lint:eslint --fix && yarn lint:prettier --write && (fixpack || true)",
"lint": "tsc -p tsconfig.lint.json && yarn lint:eslint && yarn lint:prettier -l && fixpack",
"lint:eslint": "eslint -f visualstudio packages",
"lint:prettier": "prettier \"**/*{.ts,.js,.json,.md,.yml,rc}\"",
"postinstall": "husky install",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"release": "lerna publish",
"report": "open ./coverage/lcov-report/index.html",
"size": "cross-env SIZE=1 rollup -c ./rollup.config.js && node ./utilities/sizes.js",
"size:check": "cross-env CHECK=1 yarn size",
"size:write": "cross-env WRITE=1 yarn size && git add .sizes.json",
"test": "cross-env MARKO_SOURCE_RUNTIME=1 TS_NODE_IGNORE='/node_modules/(?!@marko/)/' mocha --enable-source-maps -r ts-node/register --timeout 10000 packages/*/test/{*.test.ts,*/*.test.ts}",
"test:coverage": "nyc --reporter=text-summary yarn test",
"test:watch": "yarn test --watch --watch-files '**/*.ts'"
},
"workspaces": [
"packages/*"
]
}