ts-dev
Version:
Typescript development tools
20 lines (19 loc) • 643 B
JSON
{
"scripts": {
"lint": "eslint src --ext .ts --cache --cache-location ./dist/",
"compile": "tsc",
"pretest": "npm run --silent compile",
"test": "mocha --loader=ts-dev",
"prestart": "npm run compile",
"start": "node dist/esm/server.js",
"prebuild": "ts-dev",
"build": "concurrently npm:lint npm:compile ts-dev --kill-others-on-fail",
"prepack": "ts-dev",
"pack": "ts-dev",
"prepublishOnly": "ts-dev",
"publish": "ts-dev",
"preversion": "npm run build && npm test",
"version": "npm run build",
"postversion": "npm run publish && git push --follow-tags"
}
}