package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "deep-eql",
  3. "description": "Improved deep equality testing for Node.js and the browser.",
  4. "keywords": [
  5. "chai util",
  6. "deep equal",
  7. "object equal",
  8. "testing"
  9. ],
  10. "license": "MIT",
  11. "author": "Jake Luer <jake@alogicalparadox.com>",
  12. "contributors": [
  13. "Keith Cirkel (https://github.com/keithamus)",
  14. "dougluce (https://github.com/dougluce)",
  15. "Lorenz Leutgeb (https://github.com/flowlo)"
  16. ],
  17. "main": "./index",
  18. "files": [
  19. "index.js",
  20. "deep-eql.js"
  21. ],
  22. "repository": {
  23. "type": "git",
  24. "url": "git@github.com:chaijs/deep-eql.git"
  25. },
  26. "scripts": {
  27. "bench": "node bench",
  28. "build": "browserify $npm_package_main --standalone deepEqual -o deep-eql.js",
  29. "lint": "eslint --ignore-path .gitignore .",
  30. "prepublish": "npm run build",
  31. "semantic-release": "semantic-release pre && npm publish && semantic-release post",
  32. "pretest": "npm run lint",
  33. "test": "npm run test:node && npm run test:browser",
  34. "test:node": "istanbul cover _mocha",
  35. "test:browser": "karma start --singleRun=true",
  36. "watch": "karma start --auto-watch --singleRun=false",
  37. "upload-coverage": "lcov-result-merger 'coverage/**/lcov.info' | coveralls; exit 0"
  38. },
  39. "config": {
  40. "ghooks": {
  41. "commit-msg": "validate-commit-msg"
  42. }
  43. },
  44. "eslintConfig": {
  45. "extends": [
  46. "strict/es5"
  47. ],
  48. "rules": {
  49. "complexity": 0,
  50. "spaced-comment": 0,
  51. "no-underscore-dangle": 0,
  52. "no-use-before-define": 0
  53. }
  54. },
  55. "dependencies": {
  56. "type-detect": "^4.0.0"
  57. },
  58. "devDependencies": {
  59. "benchmark": "^2.1.0",
  60. "browserify": "^13.0.0",
  61. "browserify-istanbul": "^1.0.0",
  62. "component": "*",
  63. "coveralls": "2.11.8",
  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. "kewlr": "^0.3.1",
  76. "lcov-result-merger": "^1.0.2",
  77. "lodash.isequal": "^4.4.0",
  78. "mocha": "^3.1.2",
  79. "phantomjs-prebuilt": "^2.1.5",
  80. "semantic-release": "^4.3.5",
  81. "simple-assert": "^1.0.0",
  82. "travis-after-all": "^1.4.4",
  83. "validate-commit-msg": "^2.3.1",
  84. "watchify": "^3.7.0"
  85. },
  86. "engines": {
  87. "node": ">=0.12"
  88. },
  89. "version": "3.0.1"
  90. }