word-frequency-counter
Version:
A word frequency counter
80 lines • 2.23 kB
JSON
{
"name": "word-frequency-counter",
"version": "1.13.5",
"description": "A word frequency counter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://codeberg.org/hpenton/word-frequency-counter.git"
},
"keywords": [
"word",
"frequency",
"counter"
],
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"testPathIgnorePatterns": [
"<rootDir>/__tests__/mockingFunctions/mocks.ts",
"<rootDir>/old"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/fetcher/fetcher.ts"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec|steps))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"restoreMocks": true,
"clearMocks": true,
"resetMocks": true
},
"author": "Henry Penton",
"license": "MIT",
"bugs": {
"url": "https://codeberg.org/hpenton/word-frequency-counter/issues"
},
"homepage": "https://codeberg.org/hpenton/word-frequency-counter#readme",
"devDependencies": {
"@stryker-mutator/core": "~9.6.1",
"@stryker-mutator/jest-runner": "~9.6.1",
"@stryker-mutator/typescript-checker": "~9.6.1",
"@swc/core": "~1.15.30",
"@swc/jest": "0.2.39",
"eslint": "^10.2.1",
"jest": "~30.3.0",
"typescript": "~6.0.3"
},
"dependencies": {
"@henrypenton/uuid": "^1.1.17"
},
"scripts": {
"build": "rm -rf dist && tsc",
"deploy": "pnpm build && pnpm tarball && pnpm publish",
"dependencies:check": "pnpm outdated --json > outdated.json || true",
"lint:check": "eslint",
"lint": "eslint",
"mutate": "stryker run -c stryker.config.json --concurrency 8",
"prettier:check": "prettier --check src/*",
"prettier": "prettier --write src/*",
"release-major": "pnpm version major",
"release-minor": "pnpm version minor",
"release-patch": "pnpm version patch",
"tarball": "pnpm pack",
"test:compile": "tsc --project tsconfig-test.json",
"test:coverage": "jest --coverage",
"test": "jest",
"tag:current": "git tag $npm_package_name@$npm_package_version"
}
}