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 29202908d4
feat: allow matcher extensions (#31)
* feat: expose Expect to allow custom matcher extensions

* feat: include generated types

* docs: document custom matchers
2023-04-18 13:32:11 -04:00

32 lines
881 B
JSON

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