mirror of
https://github.com/mts7/obsidian-word-frequency.git
synced 2026-07-22 05:43:07 +00:00
Removes [@tootallnate/once](https://github.com/TooTallNate/once). It's no longer used after updating ancestor dependency [jest-environment-jsdom](https://github.com/jestjs/jest/tree/HEAD/packages/jest-environment-jsdom). These dependencies need to be updated together. Removes `@tootallnate/once` Updates `jest-environment-jsdom` from 29.7.0 to 30.2.0 - [Release notes](https://github.com/jestjs/jest/releases) - [Changelog](https://github.com/jestjs/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/jestjs/jest/commits/v30.2.0/packages/jest-environment-jsdom) --- updated-dependencies: - dependency-name: "@tootallnate/once" dependency-version: dependency-type: indirect - dependency-name: jest-environment-jsdom dependency-version: 30.2.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
63 lines
2 KiB
JSON
63 lines
2 KiB
JSON
{
|
|
"name": "word-frequency",
|
|
"version": "1.3.8",
|
|
"type": "module",
|
|
"description": "Count word frequency in current note within Obsidian",
|
|
"main": "main.js",
|
|
"directories": {
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"dev": "npm run build && obsidian --dev",
|
|
"watch": "rollup -c --watch",
|
|
"prettier": "npx prettier --check \"src/**/*.{js,ts,jsx,tsx}\"",
|
|
"format": "npx prettier src --write",
|
|
"lint": "eslint . --ext \"**/*.{js,ts,jsx,tsx}\"",
|
|
"lint-fix": "eslint . --ext .js,.ts --fix",
|
|
"test": "jest",
|
|
"coverage": "npx jest --coverage",
|
|
"mutate": "stryker run",
|
|
"all": "npm run lint-fix && npm run format && npm run build && npm run coverage && npm run mutate"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mts7/obsidian-word-frequency.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Mike Rodarte",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mts7/obsidian-word-frequency/issues"
|
|
},
|
|
"homepage": "https://github.com/mts7/obsidian-word-frequency#readme",
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.22.0",
|
|
"@rollup/plugin-commonjs": "^28.0.3",
|
|
"@rollup/plugin-json": "^6.1.0",
|
|
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
"@rollup/plugin-typescript": "^12.1.2",
|
|
"@stryker-mutator/core": "^9.3.0",
|
|
"@stryker-mutator/jest-runner": "^9.3.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/jsdom": "^21.1.7",
|
|
"@types/node": "^22.13.9",
|
|
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
"@typescript-eslint/parser": "^8.26.1",
|
|
"eslint": "^9.22.0",
|
|
"eslint-config-prettier": "^10.1.1",
|
|
"eslint-plugin-import": "^2.31.0",
|
|
"eslint-plugin-jest": "^28.11.0",
|
|
"globals": "^16.0.0",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^30.2.0",
|
|
"jsdom": "^26.0.0",
|
|
"obsidian": "^1.8.7",
|
|
"prettier": "^3.5.3",
|
|
"rollup": "^4.59.0",
|
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
"ts-jest": "^29.2.6",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.26.1"
|
|
}
|
|
}
|