Marc Cataford
bc2bd85422
* feat: autodoc * docs: autodoc output docs: autodoc output * build: document generator * ci: add doc check * chore: add docs * ci: finagle with docs stale check ci: target generated docs for diff * ci: remove check * docs: add links * docs: more matcher documentation
33 lines
958 B
JSON
33 lines
958 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 docs && rome check src tests docs",
|
|
"lint:fix": "rome format src tests docs --write && rome check src tests docs --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",
|
|
"docs": "yarn dlx ts-node ./docs/generate.ts ./src"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.15.10",
|
|
"rome": "^12.0.0",
|
|
"typescript": "^4.0.0"
|
|
}
|
|
}
|