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.
A CLI tool to get easy info from your
package.json
.
npm i -g abt
abt takes only one argument, being the .dotNoted
reference to the part of your package.json
that you wish to fetch. When called with no arguments at all, abt will present you with your .scripts
by default. When called with multiple arguments, abt will only use the first. abt also provides shortcuts. (See below.)
Given the command abt
or abt .scripts
, abt will give you your package.json
's scripts
value:
["<path/to/projectRoot>/package.json"].scripts == {
"start": "node bin",
"test": "jest"
}
Given the command abt .dependencies
, abt will give you the dependencies
value found in your package.json
:
["<path/to/projectRoot>/package.json"].dependencies == {
"ink": "^0.4.1",
"ink-spaces": "^0.0.1",
"ink-spinner": "^1.0.0",
"node-jq": "^1.2.0",
"yargs": "^11.0.0"
}
Given the command abt .version
, abt will give you the version
value found in your package.json
:
["<path/to/projectRoot>/package.json"].version == "0.0.2"
arg | same as |
---|---|
.DD | '.devDependencies' |
.PD | '.peerDependencies' |
.D | '.dependencies' |
.V | '.version' |
Example: abt .DD
-> abt .devDependencies
FAQs
A CLI tool to view and execute npm scripts.
We found that abt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.