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 329103c470
feat: getting something going (#1)
* feat: basics

* chore: lint

* wip: slightly better expect logic

* test: use self for test cases

* ci: enable test, build steps

* chore: lint

* docs: readme stub

* feat: toBe

* chore: lockfile
2023-04-14 09:38:15 -04:00

22 lines
548 B
JSON

{
"name": "testrunner",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"packageManager": "yarn@3.4.1",
"bin": {
"womm": "./dist/runner.js"
},
"scripts": {
"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": "^11.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.0.0"
}
}