Only publish the dist/ folder.
[ustaxlib.git] / package.json
1 {
2 "name": "ustaxlib",
3 "version": "1.0.2",
4 "description": "A library for modeling individual US tax returns.",
5 "repository": "https://github.com/rsesek/ustaxlib",
6 "scripts": {
7 "prepare": "./build.sh",
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 },
13 "author": "Robert Sesek",
14 "license": "GPL-3.0-only",
15 "dependencies": {
16 "typescript": "^3.8.2"
17 },
18 "files": [
19 "dist/**/*",
20 "src/**/*",
21 "examples/**/*"
22 ],
23 "devDependencies": {
24 "@types/jest": "^25.1.2",
25 "jest": "^25.1.0",
26 "ts-jest": "^25.2.0"
27 }
28 }