mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
* chore: add size tracking utility * chore: only build `runtime/dist/dom` for size * chore: add size check to ci
79 lines
2.9 KiB
JSON
79 lines
2.9 KiB
JSON
{
|
|
"name": "fluurt",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.11.6",
|
|
"@babel/core": "^7.11.6",
|
|
"@babel/helper-module-imports": "^7.10.4",
|
|
"@babel/node": "^7.10.5",
|
|
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
"@babel/plugin-proposal-export-default-from": "^7.10.4",
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
"@babel/preset-env": "^7.11.5",
|
|
"@babel/register": "^7.11.5",
|
|
"@commitlint/cli": "^11.0.0",
|
|
"@commitlint/config-conventional": "^11.0.0",
|
|
"@commitlint/config-lerna-scopes": "^11.0.0",
|
|
"@ebay/browserslist-config": "^1.0.1",
|
|
"@istanbuljs/nyc-config-typescript": "^0.1.3",
|
|
"@types/jsdom": "^12.2.4",
|
|
"@types/mocha": "^5.2.7",
|
|
"@types/node": "^12.7.3",
|
|
"@types/babel__core": "^7.1.9",
|
|
"@types/babel__traverse": "^7.0.14",
|
|
"@typescript-eslint/eslint-plugin": "^4.1.1",
|
|
"@typescript-eslint/parser": "^4.1.1",
|
|
"babel-plugin-istanbul": "^6.0.0",
|
|
"babel-plugin-minprops": "^2.0.1",
|
|
"chai": "^4.2.0",
|
|
"chalk": "^4.1.0",
|
|
"codecov": "^3.7.2",
|
|
"cross-env": "^7.0.2",
|
|
"eslint": "^7.9.0",
|
|
"eslint-config-prettier": "^6.11.0",
|
|
"eslint-plugin-prettier": "^3.1.4",
|
|
"husky": "^4.3.0",
|
|
"it-fails": "^1.0.5",
|
|
"jsdom": "^15.1.1",
|
|
"jsdom-context-require": "^2.0.1",
|
|
"lerna": "^3.22.1",
|
|
"lint-staged": "^10.3.0",
|
|
"minified-size": "^2.0.3",
|
|
"mocha": "^8.1.3",
|
|
"mocha-autotest": "^1.0.3",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.1.1",
|
|
"pretty-format": "^24.9.0",
|
|
"rollup": "^1.21.4",
|
|
"rollup-plugin-hypothetical": "^2.1.0",
|
|
"rollup-plugin-terser": "^5.1.2",
|
|
"rollup-plugin-typescript2": "^0.24.2",
|
|
"source-map-support": "^0.5.16",
|
|
"standard-version": "^8.0.1",
|
|
"table": "^6.0.3",
|
|
"ts-node": "^8.5.0",
|
|
"typescript": "4.0.3"
|
|
},
|
|
"scripts": {
|
|
"build": "lerna run build --parallel",
|
|
"build:size": "(cd ./packages/runtime && cross-env SIZE=1 rollup -c ./rollup.config.js)",
|
|
"build:watch": "npm run build -- --watch",
|
|
"ci:codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
|
|
"ci:test": "cross-env NODE_ENV=test nyc --reporter=text npm test",
|
|
"ci:valid-size": "cross-env CHECK=1 npm run size",
|
|
"clean": "lerna clean && rm -rf ./packages/*/dist",
|
|
"format": "prettier \"**/*.{json,md,js}\" --write",
|
|
"lint": "eslint -f visualstudio packages/",
|
|
"postinstall": "lerna bootstrap --hoist --no-ci",
|
|
"release": "npm run build && lerna publish",
|
|
"report": "open ./coverage/lcov-report/index.html",
|
|
"size": "npm run build:size && node ./utilities/sizes.js",
|
|
"stage-size": "cross-env WRITE=1 npm run size && git add .sizes.json",
|
|
"test": "mocha -r ts-node/register packages/*/test/{*.test.ts,*/*.test.ts}",
|
|
"test:watch": "npm run mocha -- --recursive --watch"
|
|
}
|
|
}
|