social-security-calculator 0.0.3 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "social-security-calculator",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "Calculate estimated Social Security Benefits",
|
|
5
|
-
"main": "
|
|
6
|
-
"types": "
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
7
|
"files": [
|
|
8
|
-
"
|
|
8
|
+
"**/*"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
File without changes
|
package/README.md
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# SocialSecurityCalculator
|
|
2
|
-
TypeScript to calculate estimated Social Security Benefits
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
This module will calculate your expected retirement benefits
|
|
6
|
-
from Social Security given your annual earnings
|
|
7
|
-
Inputs:
|
|
8
|
-
1) EarningsRecord -
|
|
9
|
-
Dictionary mapping a year to the amount of Social
|
|
10
|
-
Security eligible earnings in that particular year
|
|
11
|
-
|
|
12
|
-
2) NationalAverageWageIndexSeries -
|
|
13
|
-
Data pulled directly from the Social Security website for the
|
|
14
|
-
national average wage data
|
|
15
|
-
|
|
16
|
-
Adapted from python originally written by Ryan Antkowiak (antkowiak@gmail.com) and updated by Kevin Fowlks (fowlk1kd@gmail.com)
|
|
17
|
-
|