package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "warning",
  3. "version": "4.0.3",
  4. "description": "A mirror of Facebook's Warning",
  5. "main": "warning.js",
  6. "scripts": {
  7. "test": "npm run test:dev && npm run test:prod",
  8. "test:dev": "NODE_ENV=development jest",
  9. "test:prod": "NODE_ENV=production jest",
  10. "commit": "git cz",
  11. "commitmsg": "commitlint -e $GIT_PARAMS"
  12. },
  13. "dependencies": {
  14. "loose-envify": "^1.0.0"
  15. },
  16. "devDependencies": {
  17. "@commitlint/cli": "^6.2.0",
  18. "@commitlint/config-conventional": "^6.1.3",
  19. "browserify": "^16.2.2",
  20. "commitizen": "^2.10.1",
  21. "cz-conventional-changelog": "^2.1.0",
  22. "husky": "^0.14.3",
  23. "jest": "^23.1.0",
  24. "uglify-js": "^3.3.25"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/BerkeleyTrue/warning.git"
  29. },
  30. "config": {
  31. "commitizen": {
  32. "path": "cz-conventional-changelog"
  33. }
  34. },
  35. "browserify": {
  36. "transform": [
  37. "loose-envify"
  38. ]
  39. },
  40. "files": [
  41. "warning.js"
  42. ],
  43. "keywords": [
  44. "warning",
  45. "facebook",
  46. "react",
  47. "invariant"
  48. ],
  49. "author": "Berkeley Martinez <berkeley@berkeleytrue.com> (http://www.berkeleytrue.com)",
  50. "license": "MIT",
  51. "bugs": {
  52. "url": "https://github.com/BerkeleyTrue/warning/issues"
  53. },
  54. "homepage": "https://github.com/BerkeleyTrue/warning"
  55. }