Gathering detailed insights and metrics for mimosa-require-lint
Gathering detailed insights and metrics for mimosa-require-lint
Gathering detailed insights and metrics for mimosa-require-lint
Gathering detailed insights and metrics for mimosa-require-lint
npm install mimosa-require-lint
Typescript
Module System
Min. Node Version
NPM Version
69.7
Supply Chain
83.5
Quality
74.9
Maintenance
100
Vulnerability
100
License
JavaScript (64.15%)
CoffeeScript (35.85%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
7 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jul 14, 2014
Latest Version
0.4.0
Package Id
mimosa-require-lint@0.4.0
Size
2.93 kB
NPM Version
1.4.4
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
This module will scan your JavaScript files for unused AMD dependencies. Someday it may do more. If you've got any ideas, fire up an issue!
For more information regarding Mimosa, see http://mimosa.io.
Add 'require-lint'
to your list of modules. That's all! Mimosa will install the module for you when you start up.
1define(['backbone','underscore'], function(Backbone, _) { 2 var view = new Backbone.View() 3 return view; 4})
For the above totally worthless piece of code, this module will provide the following warning:
Dependency [[ underscore ]] declared but not used in [[ /path/to/lame/file.js ]]
It will also work for the AMD CommonJS wrapper
1define(function(require, exports, module){ 2 var Backbone = require('backbone'), 3 var _ = require('underscore'); 4 5 var view = new Backbone.View() 6 module.exports = view; 7});
And the warning:
Dependency [[ underscore ]] declared but not used in [[ /path/to/lame/file.js ]]
1requireLint: { 2 exclude:[] 3}
exclude
: array of strings or regexes that match files to not jshint, strings are paths that can be relative to the watch.sourceDir or absolute.No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
Found 0/7 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More