Upgrade to Node v16 for Github workflows.
[ustaxlib.git] / package.json
index 71f498c2139e65c7f029a85addefd6c01e5c513e..b959a7cfb65b66b7fd61d06d8fb01c554fb62105 100644 (file)
@@ -1,26 +1,27 @@
 {
   "name": "ustaxlib",
-  "version": "1.0.0",
+  "version": "2.1.0",
   "description": "A library for modeling individual US tax returns.",
+  "repository": "https://github.com/rsesek/ustaxlib",
   "scripts": {
+    "npm-publish": "./build.sh && npm publish dist",
     "dev": "jest --watch",
     "test": "jest",
-    "check": "tsc --noEmit",
-    "debug": "node --inspect-brk --stack-trace-limit=1000 node_modules/.bin/jest --coverage=false",
-    "prepare": "./build.sh"
+    "debug": "node --inspect-brk --stack-trace-limit=1000 node_modules/.bin/jest --coverage=false"
   },
   "author": "Robert Sesek",
   "license": "GPL-3.0-only",
   "dependencies": {
-    "typescript": "^3.8.2"
+    "typescript": "^4.3.5"
   },
   "files": [
     "dist/**/*",
-    "src/**/*"
+    "src/**/*",
+    "examples/**/*"
   ],
   "devDependencies": {
-    "@types/jest": "^25.1.2",
-    "jest": "^25.1.0",
-    "ts-jest": "^25.2.0"
+    "@types/jest": "^25.2.3",
+    "jest": "^29.3.1",
+    "ts-jest": "^29.0.3"
   }
 }