Marc Cataford
ec2e46e04d
* build: run tests using actual build * build: build script that includes hashbang prepending * ci: missing /bin/zsh
30 lines
799 B
JSON
30 lines
799 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"
|
|
],
|
|
"bin": {
|
|
"womm": "dist/cli.js"
|
|
},
|
|
"scripts": {
|
|
"prepack": "yarn build",
|
|
"prebuild": "rm -rf dist",
|
|
"lint": "rome format src tests && rome check src tests",
|
|
"lint:fix": "rome format src tests --write && rome check src tests --apply",
|
|
"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",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.0.0"
|
|
}
|
|
}
|