package.json 778 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "nullthrows",
  3. "version": "1.1.1",
  4. "description": "flow typed nullthrows",
  5. "keywords": [
  6. "assert",
  7. "flow",
  8. "invariant",
  9. "nullthrows"
  10. ],
  11. "license": "MIT",
  12. "author": "Andres Suarez <zertosh@gmail.com>",
  13. "files": [
  14. "nullthrows.d.ts",
  15. "nullthrows.js",
  16. "nullthrows.js.flow"
  17. ],
  18. "main": "nullthrows.js",
  19. "types": "nullthrows.d.ts",
  20. "repository": "https://github.com/zertosh/nullthrows",
  21. "scripts": {
  22. "test": "jest"
  23. },
  24. "dependencies": {},
  25. "devDependencies": {
  26. "@babel/runtime-corejs2": "^7.0.0",
  27. "flow-bin": "0.87.0",
  28. "jest": "^23.5.0",
  29. "typescript": "3.0.3"
  30. },
  31. "jest": {
  32. "testEnvironment": "node",
  33. "testPathIgnorePatterns": [
  34. "/__fixtures__/"
  35. ],
  36. "watchman": false
  37. }
  38. }