Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@putout/plugin-package-json
Advanced tools
🐊Putout plugin helps to automate fixing package.json
.
npm i @putout/plugin-package-json -D
{
"rules": {
"package-json/add-type": "on",
"package-json/apply-https-to-repository-url": "on",
"package-json/remove-nyc": "on",
"package-json/remove-commit-type": "on",
"package-json/remove-exports-with-missing-files": "off",
"package-json/find-file": "off"
}
}
Add type
field to package.json
:
{
"name": "hello",
"version": "1.0.0",
+ "type": "commonjs"
}
The git://
protocol for GitHub repos should not be used due security concerns.
Checkout in 🐊Putout Editor.
{
"repository": {
"type": "git",
- "url": "git://github.com/coderaiser/putout.git"
+ "url": "git+https://github.com/coderaiser/putout.git"
}
package.json
produces more traffic then users of your package really need;nyc
section in package.json
:
{
"nyc": {
"check-coverage": "on",
"all": "on",
"exclude": [
"**/*.spec.js",
"**/fixture",
"test",
".*.js"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}
File .nycrc.json
:
{
"check-coverage": "on",
"all": "on",
"exclude": [
"**/*.spec.js",
"**/fixture",
"test",
".*.js"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
Since 🎁Wisdom v14 commitType
set to colon
be default, so it can be dropped from package.json
if it's value not paren
:
Check out in 🐊Putout Editor.
{
"name": "hello",
"version": "1.0.0",
"commitType": "colon"
}
Check out in 🐊Putout Editor.
__putout_processor_json({
"keywords": [
"putout",
"putout-plugin",
- "plugin",
- "putout"
+ "plugin"
],
});
Find package.json
inside of .filesystem.json
and applies all other package-json
rules.
Checkout in 🐊Putout Editor.
{
"name": "hello",
"version": "1.0.0",
+ "type": "commonjs"
}
Find package.json
inside of .filesystem.json
and removes exports
with missing files.
Checkout in 🐊Putout Editor:
__putout_processor_filesystem([
"/",
["/package.json", `{
"exports": {
"./parse-options": "./lib/parse-options/index.js",
- "./loader": "./lib/loader.mjs"
}
}`],
"/lib/",
"/lib/parse-options/",
["/lib/parse-options/index.js", "export const a = 5"],
]);
MIT
FAQs
🐊Putout plugin for package.json
The npm package @putout/plugin-package-json receives a total of 12,668 weekly downloads. As such, @putout/plugin-package-json popularity was classified as popular.
We found that @putout/plugin-package-json demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.