@giancosta86/more-jest
Version:
TypeScript utilities for Jest
67 lines (66 loc) • 1.89 kB
JSON
{
"name": "@giancosta86/more-jest",
"version": "4.1.0",
"description": "TypeScript utilities for Jest",
"keywords": [
"Jest",
"matchers",
"utilities",
"TypeScript"
],
"homepage": "https://github.com/giancosta86/more-jest#readme",
"bugs": "https://github.com/giancosta86/more-jest/issues",
"license": "MIT",
"author": {
"name": "Gianluca Costa",
"email": "gianluca@gianlucacosta.info",
"url": "https://gianlucacosta.info/"
},
"files": [],
"main": "dist",
"types": "dist",
"repository": "giancosta86/more-jest",
"scripts": {
"clean": "rimraf dist coverage giancosta86-*.tgz",
"clean:all": "yarn clean && rimraf node_modules",
"format": "prettier --write .",
"check-all": "yarn check-format && yarn lint && yarn test",
"check-format": "prettier --check .",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx,.cjs,.mjs",
"test": "jest --passWithNoTests",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"build": "yarn compile-ts",
"compile-ts": "tsc",
"prepack": "yarn check-all && yarn build && yarn prune-dist",
"prune-dist": "rimraf -g 'dist/test/' 'dist/**/*.test.*'",
"watch": "yarn compile-ts --watch"
},
"dependencies": {
"@giancosta86/stream-utils": "^2.2.0",
"@giancosta86/swan-lake": "^3.0.0",
"@rimbu/common": "^1.1.0",
"@rimbu/list": "^1.1.0"
},
"devDependencies": {
"@swc/core": "^1.3.56",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"jest": "^29.6.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^5.0.4"
},
"peerDependencies": {
"jest": ">=29"
},
"engines": {
"node": ">=18.17.1"
},
"publishConfig": {
"access": "public"
}
}