social-security-calculator 0.0.5 → 0.0.6

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.
package/README.md ADDED
@@ -0,0 +1,17 @@
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
+
File without changes
File without changes
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "social-security-calculator",
3
+ "version": "0.0.5",
4
+ "description": "Calculate estimated Social Security Benefits",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "files": [
8
+ "**/*"
9
+ ],
10
+ "scripts": {
11
+ "test": "echo \"Error: no test specified\" && exit 1",
12
+ "build": "tsc"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/cmcnulty/SocialSecurityCalculator.git"
17
+ },
18
+ "keywords": [],
19
+ "author": "",
20
+ "license": "ISC",
21
+ "bugs": {
22
+ "url": "https://github.com/cmcnulty/SocialSecurityCalculator/issues"
23
+ },
24
+ "homepage": "https://github.com/cmcnulty/SocialSecurityCalculator#readme",
25
+ "devDependencies": {
26
+ "typescript": "^4.8.3"
27
+ },
28
+ "dependencies": {
29
+ "compound-calc": "^2.0.0"
30
+ }
31
+ }
File without changes
package/package.json CHANGED
@@ -1,12 +1,9 @@
1
1
  {
2
2
  "name": "social-security-calculator",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Calculate estimated Social Security Benefits",
5
- "main": "index.js",
6
- "types": "index.d.ts",
7
- "files": [
8
- "**/*"
9
- ],
5
+ "main": "lib/index.js",
6
+ "types": "lib/index.d.ts",
10
7
  "scripts": {
11
8
  "test": "echo \"Error: no test specified\" && exit 1",
12
9
  "build": "tsc"
@@ -27,5 +24,8 @@
27
24
  },
28
25
  "dependencies": {
29
26
  "compound-calc": "^2.0.0"
30
- }
27
+ },
28
+ "files": [
29
+ "lib"
30
+ ]
31
31
  }