marko/package.json
2020-11-11 15:37:57 -08:00

61 lines
2.4 KiB
JSON

{
"name": "fluurt",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@commitlint/config-lerna-scopes": "^11.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@rollup/plugin-replace": "2.3.4",
"@types/jsdom": "^16.2.5",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chalk": "^4.1.0",
"codecov": "^3.8.1",
"cross-env": "^7.0.2",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"fixpack": "^3.0.6",
"husky": "^4.3.0",
"jsdom": "^16.4.0",
"jsdom-context-require": "^2.0.1",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"magic-string": "^0.25.7",
"mocha": "^8.2.1",
"mocha-autotest": "^1.0.3",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"pretty-format": "^26.6.2",
"rollup": "^2.33.1",
"rollup-plugin-hypothetical": "^2.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"source-map-support": "^0.5.19",
"table": "^6.0.3",
"ts-node": "^9.0.0",
"typescript": "4.0.5"
},
"private": true,
"scripts": {
"build": "lerna run build --parallel",
"ci:codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"ci:test": "nyc --reporter=text npm test",
"clean": "lerna clean && rm -rf ./packages/*/{dist,debug}",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write && fixpack",
"lint": "tsc --noEmit && npm run lint:eslint && npm run lint:prettier -- -l",
"lint:eslint": "eslint -f visualstudio packages",
"lint:prettier": "prettier \"**/*.{json,md,ts,js}\"",
"postinstall": "lerna bootstrap --hoist --no-ci",
"release": "npm run build && lerna publish",
"report": "open ./coverage/lcov-report/index.html",
"size": "(cd ./packages/runtime && cross-env SIZE=1 rollup -c ./rollup.config.js) && node ./utilities/sizes.js",
"size:check": "cross-env CHECK=1 npm run size",
"size:write": "cross-env WRITE=1 npm run size && git add .sizes.json",
"test": "cross-env NODE_ENV=test mocha -r ts-node/register -r source-map-support/register packages/*/test/{*.test.ts,*/*.test.ts}",
"test:coverage": "nyc --reporter=text-summary npm run test",
"test:watch": "npm run test -- --watch --watch-files '**/*.ts'"
}
}