Prepare build as module.
[ustaxlib.git] / package.json
1 {
2 "name": "ustaxlib",
3 "version": "0.1.0",
4 "description": "A library for modeling individual US tax returns.",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "scripts": {
8 "dev": "jest --watch",
9 "test": "jest",
10 "check": "tsc --noEmit",
11 "debug": "node --inspect-brk --stack-trace-limit=1000 node_modules/.bin/jest --coverage=false",
12 "prepublish": "tsc"
13 },
14 "author": "Robert Sesek",
15 "license": "ISC",
16 "dependencies": {
17 "typescript": "^3.8.2"
18 },
19 "devDependencies": {
20 "@types/jest": "^25.1.2",
21 "jest": "^25.1.0",
22 "ts-jest": "^25.2.0"
23 }
24 }