package.json 498 B

12345678910111213141516171819202122
  1. {
  2. "name": "bank-client",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "build": "tsc",
  9. "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
  10. "lint": "tslint -p tsconfig.json"
  11. },
  12. "keywords": [],
  13. "author": "",
  14. "license": "ISC",
  15. "devDependencies": {
  16. "prettier": "^1.18.2",
  17. "tslint": "^5.18.0",
  18. "tslint-config-prettier": "^1.18.0",
  19. "typescript": "^3.5.3"
  20. }
  21. }