This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
works-on-my-machine/package.json
Marc Cataford 40cc9fa664
feat: cli options, help (#10)
* feat: cli options, help

* refactor: resolve tsconfig kerfuffle

* wip: clean up

* refactor: trim messaging on failure
2023-04-14 09:38:21 -04:00

28 lines
706 B
JSON

{
"name": "works-on-my-machine",
"description": "A no-dependency test runner",
"version": "0.0.0",
"main": "dist/runner.js",
"license": "MIT",
"packageManager": "yarn@3.5.0",
"files": [
"dist/**/*.js"
],
"bin": {
"womm": "dist/runner.js"
},
"scripts": {
"prepack": "yarn build",
"prebuild": "rm -rf dist",
"lint": "rome check src tests && rome format src tests",
"lint:fix": "rome check src tests --apply && rome format src tests --write",
"test": "ts-node ./src/runner.ts ./tests",
"build": "tsc --project ."
},
"devDependencies": {
"@types/node": "^18.15.10",
"rome": "^12.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.0.0"
}
}