package.json 718 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "invariant",
  3. "version": "2.2.4",
  4. "description": "invariant",
  5. "keywords": [
  6. "test",
  7. "invariant"
  8. ],
  9. "license": "MIT",
  10. "author": "Andres Suarez <zertosh@gmail.com>",
  11. "files": [
  12. "browser.js",
  13. "invariant.js",
  14. "invariant.js.flow"
  15. ],
  16. "repository": "https://github.com/zertosh/invariant",
  17. "scripts": {
  18. "test": "NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js"
  19. },
  20. "dependencies": {
  21. "loose-envify": "^1.0.0"
  22. },
  23. "devDependencies": {
  24. "browserify": "^11.0.1",
  25. "flow-bin": "^0.67.1",
  26. "tap": "^1.4.0"
  27. },
  28. "main": "invariant.js",
  29. "browser": "browser.js",
  30. "browserify": {
  31. "transform": [
  32. "loose-envify"
  33. ]
  34. }
  35. }