@sgohlke/funpara
Version:
Function parameter library for coding and testing
55 lines (54 loc) • 1.57 kB
JSON
{
"name": "@sgohlke/funpara",
"version": "1.0.0",
"description": "Function parameter library for coding and testing",
"scripts": {
"build": "tsup-node",
"check": "tsc --noEmit --pretty",
"checkformat": "prettier --check .",
"format": "prettier --cache --write .",
"lint": "oxlint -c .oxlintrc.json",
"prepack": "npm run build",
"test": "node --experimental-test-coverage --import tsx --test tests/index.test.ts"
},
"type": "module",
"main": "build/index.cjs",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js",
"require": "./build/index.cjs",
"default": "./build/index.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sgohlke/funpara.git"
},
"keywords": [
"Testing",
"Date",
"Fetch",
"Exit",
"Timeout"
],
"author": "Stefan Gohlke",
"license": "MIT",
"bugs": {
"url": "https://github.com/sgohlke/funpara/issues"
},
"homepage": "https://github.com/sgohlke/funpara#readme",
"devDependencies": {
"@swc/core": "1.12.9",
"@types/node": "24.0.8",
"oxlint": "1.4.0",
"prettier": "3.6.2",
"prettier-plugin-organize-imports": "4.1.0",
"tsup": "8.5.0",
"tsx": "4.20.3",
"typescript": "5.8.3"
}
}