textlint-rule-terminology
Advanced tools
Comparing version 5.1.9 to 5.2.0
{ | ||
"name": "textlint-rule-terminology", | ||
"version": "5.1.9", | ||
"version": "5.2.0", | ||
"description": "TextLint rule to check correct terms spelling", | ||
@@ -15,5 +15,6 @@ "author": { | ||
}, | ||
"main": "index.js", | ||
"type": "module", | ||
"exports": "./out/index.js", | ||
"files": [ | ||
"index.js", | ||
"out", | ||
"terms.jsonc" | ||
@@ -23,9 +24,11 @@ ], | ||
"pretest": "npm run lint", | ||
"test": "npm run test:jest", | ||
"test": "npm run test:vitest", | ||
"posttest": "npm run format", | ||
"lint": "eslint . --cache --fix", | ||
"test:jest": "jest", | ||
"test:watch": "jest --watch", | ||
"test:coverage": "jest --coverage", | ||
"format": "prettier --write \"**/*.{js,md}\"" | ||
"test:vitest": "vitest run", | ||
"test:watch": "vitest", | ||
"build": "tsc", | ||
"format": "prettier --write \"**/*.{ts,js,md}\"", | ||
"prepublish": "npm run build", | ||
"prepare": "husky" | ||
}, | ||
@@ -42,30 +45,27 @@ "keywords": [ | ||
"devDependencies": { | ||
"eslint": "^6.8.0", | ||
"eslint-config-tamia": "^7.1.1", | ||
"husky": "^4.0.7", | ||
"jest": "^29.1.2", | ||
"lint-staged": "^9.5.0", | ||
"prettier": "^1.19.1", | ||
"textlint-tester": "^5.1.13" | ||
"@textlint/ast-node-types": "^14.0.4", | ||
"@textlint/types": "^14.0.4", | ||
"eslint": "^9.7.0", | ||
"eslint-config-tamia": "^9.1.8", | ||
"husky": "^9.1.2", | ||
"lint-staged": "^15.2.7", | ||
"prettier": "^3.3.3", | ||
"textlint-tester": "^14.0.4", | ||
"typescript": "^5.5.4", | ||
"vitest": "^2.0.4" | ||
}, | ||
"dependencies": { | ||
"lodash": "^4.17.15", | ||
"strip-json-comments": "^3.0.1", | ||
"textlint-rule-helper": "^2.1.1" | ||
"@types/lodash": "^4.17.7", | ||
"lodash": "^4.17.21", | ||
"strip-json-comments": "^5.0.1", | ||
"textlint-rule-helper": "^2.3.1" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"precommit": "lint-staged" | ||
} | ||
}, | ||
"lint-staged": { | ||
"*.{js,md}": [ | ||
"prettier --write", | ||
"git add" | ||
"*.{ts,js,md}": [ | ||
"prettier --write" | ||
], | ||
"*.js": [ | ||
"eslint --fix", | ||
"git add" | ||
"*.{ts,js}": [ | ||
"eslint --fix" | ||
] | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
27326
6
Yes
4
10
140
1
+ Added@types/lodash@^4.17.7
+ Added@types/lodash@4.17.15(transitive)
+ Addedstrip-json-comments@5.0.1(transitive)
- Removedstrip-json-comments@3.1.1(transitive)
Updatedlodash@^4.17.21
Updatedstrip-json-comments@^5.0.1
Updatedtextlint-rule-helper@^2.3.1