Upgrade to Node v16 for Github workflows.
[ustaxlib.git] / package.json
index a1aaab5352efc77e31f297028b5433d6ae1d6f3b..b959a7cfb65b66b7fd61d06d8fb01c554fb62105 100644 (file)
@@ -1,23 +1,27 @@
 {
   "name": "ustaxlib",
-  "version": "0.1.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",
-    "prepublish": "tsc",
-    "build": "tsc && cp package.json dist"
+    "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/**/*",
+    "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"
   }
 }