package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "check-error",
  3. "description": "Error comparison and information related utility for node and the browser",
  4. "keywords": [
  5. "check-error",
  6. "error",
  7. "chai util"
  8. ],
  9. "license": "MIT",
  10. "author": "Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)",
  11. "contributors": [
  12. "David Losert (https://github.com/davelosert)",
  13. "Keith Cirkel (https://github.com/keithamus)",
  14. "Miroslav Bajtoš (https://github.com/bajtos)",
  15. "Lucas Fernandes da Costa (https://github.com/lucasfcosta)"
  16. ],
  17. "files": [
  18. "index.js",
  19. "check-error.js"
  20. ],
  21. "main": "./index.js",
  22. "repository": {
  23. "type": "git",
  24. "url": "git+ssh://git@github.com/chaijs/check-error.git"
  25. },
  26. "scripts": {
  27. "build": "browserify --bare $npm_package_main --standalone checkError -o check-error.js",
  28. "lint": "eslint --ignore-path .gitignore .",
  29. "prepublish": "npm run build",
  30. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  31. "pretest": "npm run lint",
  32. "test": "npm run test:node && npm run test:browser && npm run upload-coverage",
  33. "test:browser": "karma start --singleRun=true",
  34. "test:node": "istanbul cover _mocha",
  35. "upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
  36. },
  37. "config": {
  38. "ghooks": {
  39. "commit-msg": "validate-commit-msg"
  40. }
  41. },
  42. "eslintConfig": {
  43. "extends": [
  44. "strict/es5"
  45. ],
  46. "env": {
  47. "es6": true
  48. },
  49. "globals": {
  50. "HTMLElement": false
  51. },
  52. "rules": {
  53. "complexity": 0,
  54. "max-statements": 0
  55. }
  56. },
  57. "dependencies": {
  58. "get-func-name": "^2.0.2"
  59. },
  60. "devDependencies": {
  61. "browserify": "^13.0.0",
  62. "browserify-istanbul": "^1.0.0",
  63. "coveralls": "2.11.9",
  64. "eslint": "^2.4.0",
  65. "eslint-config-strict": "^8.5.0",
  66. "eslint-plugin-filenames": "^0.2.0",
  67. "ghooks": "^1.0.1",
  68. "istanbul": "^0.4.2",
  69. "karma": "^0.13.22",
  70. "karma-browserify": "^5.0.2",
  71. "karma-coverage": "^0.5.5",
  72. "karma-mocha": "^0.2.2",
  73. "karma-phantomjs-launcher": "^1.0.0",
  74. "karma-sauce-launcher": "^0.3.1",
  75. "lcov-result-merger": "^1.0.2",
  76. "mocha": "^2.4.5",
  77. "phantomjs-prebuilt": "^2.1.5",
  78. "semantic-release": "^4.3.5",
  79. "simple-assert": "^1.0.0",
  80. "travis-after-all": "^1.4.4",
  81. "validate-commit-msg": "^2.3.1"
  82. },
  83. "engines": {
  84. "node": "*"
  85. },
  86. "version": "1.0.3"
  87. }