Add a build script to help create the package.
[ustaxlib.git] / package.json
1 {
2 "name": "ustaxlib",
3 "version": "1.0.0",
4 "description": "A library for modeling individual US tax returns.",
5 "scripts": {
6 "dev": "jest --watch",
7 "test": "jest",
8 "check": "tsc --noEmit",
9 "debug": "node --inspect-brk --stack-trace-limit=1000 node_modules/.bin/jest --coverage=false",
10 "prepare": "./build.sh"
11 },
12 "author": "Robert Sesek",
13 "license": "GPL-3.0-only",
14 "dependencies": {
15 "typescript": "^3.8.2"
16 },
17 "files": [
18 "dist/**/*",
19 "src/**/*"
20 ],
21 "devDependencies": {
22 "@types/jest": "^25.1.2",
23 "jest": "^25.1.0",
24 "ts-jest": "^25.2.0"
25 }
26 }