package.json 597 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "assert-never",
  3. "version": "1.2.1",
  4. "description": "Helper function for exhaustive checks of discriminated unions in TypeScript",
  5. "main": "index.js",
  6. "typings": "index.d.ts",
  7. "files": [
  8. "index.js",
  9. "index.ts",
  10. "index.d.ts"
  11. ],
  12. "scripts": {
  13. "build": "tsc",
  14. "prepublish": "npm run build"
  15. },
  16. "keywords": [
  17. "typescript",
  18. "discriminated unions",
  19. "assert",
  20. "never"
  21. ],
  22. "repository": "aikoven/assert-never",
  23. "author": "Daniel Lytkin <dan.lytkin@gmail.com>",
  24. "license": "MIT",
  25. "devDependencies": {
  26. "typescript": "^2.2.1"
  27. }
  28. }