Files
d4h-typescript/lib/package.json
T
Colin Williams ae7d6f98ac Add linter support
* Added linter and fixed errors

* Updated error handling to only throw error objects

---------

Co-authored-by: Colin Williams <colin@colincwilliams.com>
2023-03-17 14:15:19 -07:00

22 lines
566 B
JSON

{
"name": "d4h-typescript",
"version": "1.0.0",
"main": "./built/index.js",
"license": "MIT",
"scripts": {
"launch": "npm run build && node .",
"build": "npm run lint && npx tsc",
"build-submodules": "cd ./submodules/d4h-typescript/lib && npm run build",
"clean": "npx tsc --build --clean",
"lint": "eslint --ext .ts,.d.ts ./src"
},
"devDependencies": {
"typescript": "^4.8.4",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0"
},
"dependencies": {
}
}