Upgrade to Node v16 for Github workflows.
[ustaxlib.git] / package.json
index c25db785cea38a337673ca5705bff9943a6cdaf5..b959a7cfb65b66b7fd61d06d8fb01c554fb62105 100644 (file)
@@ -1,22 +1,27 @@
 {
   "name": "ustaxlib",
-  "version": "0.1.0",
+  "version": "2.1.0",
   "description": "A library for modeling individual US tax returns.",
-  "main": "src/index.js",
+  "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"
   },
   "author": "Robert Sesek",
-  "license": "ISC",
+  "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"
   }
 }