Gathering detailed insights and metrics for @types/inflected
Gathering detailed insights and metrics for @types/inflected
Gathering detailed insights and metrics for @types/inflected
Gathering detailed insights and metrics for @types/inflected
The repository for high quality TypeScript type definitions.
npm install @types/inflected
Typescript
Module System
97.9
Supply Chain
88
Quality
75.8
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,033 Stars
89,737 Commits
30,434 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 14, 2025
Latest Version
2.1.3
Package Id
@types/inflected@2.1.3
Unpacked Size
7.02 kB
Size
2.08 kB
File Count
5
Published on
Nov 07, 2023
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
npm install --save @types/inflected
This package contains type definitions for inflected (https://github.com/martinandert/inflected).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/inflected.
1export interface Humanize { 2 capitalize?: boolean; 3} 4 5export interface Parameterize { 6 preserveCase?: boolean; 7 separator?: string; 8} 9 10export interface Transliterate { 11 locale?: string; 12 replacement?: string; 13} 14 15export interface Inflections { 16 acronym(word: string): void; 17 plural(rule: RegExp, replacement: string): void; 18 plural(rule: string): void; 19 singular(rule: RegExp, replacement: string): void; 20 singular(rule: string): void; 21 irregular(singular: string, plural: string): void; 22 uncountable(...words: string[]): void; 23 human(rule: RegExp | string, replacement: string): void; 24 clear(scope?: string): void; 25} 26 27export interface Transliterations { 28 approximate(original: string, replacement: string): void; 29} 30 31export function pluralize(word: string, locale?: string): string; 32export function singularize(word: string, locale?: string): string; 33export function camelize(term: string, uppercaseFirstLetter?: boolean): string; 34export function underscore(camelCaseWord: string): string; 35export function humanize(lowerCaseAndUnderscoredWord: string, options?: Humanize): string; 36export function titleize(sentence: string): string; 37export function tableize(className: string): string; 38export function classify(tableName: string): string; 39export function dasherize(underscoredWord: string): string; 40export function foreignKey(className: string, separateClassNameAndIdWithUnderscore?: boolean): string; 41export function ordinal(number: number): string; 42export function ordinalize(number: number): string; 43export function inflections(locale: string, inflect?: (inflect: Inflections) => void): void; 44export function inflections(inflect?: (inflect: Inflections) => void): void; 45export function transliterate(sentence: string, options?: Transliterate): string; 46export function transliterations(locale: string, transliterate?: (transliterate: Transliterations) => void): void; 47export function transliterations(transliterate?: (transliterate: Transliterations) => void): void; 48export function parameterize(sentence: string, options?: Parameterize): string; 49export function constantify(words: string): string; 50export function capitalize(word?: string | null): string; 51 52export as namespace Inflector; 53
These definitions were written by Daniel Schmidt, and Jon Clerck.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
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