package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "node.extend",
  3. "version": "2.0.2",
  4. "description": "A port of jQuery.extend that actually works on node.js",
  5. "keywords": [
  6. "extend",
  7. "jQuery",
  8. "jQuery extend",
  9. "clone",
  10. "copy",
  11. "inherit"
  12. ],
  13. "author": "dreamerslab <ben@dreamerslab.com>",
  14. "dependencies": {
  15. "has": "^1.0.3",
  16. "is": "^3.2.1"
  17. },
  18. "devDependencies": {
  19. "@ljharb/eslint-config": "^13.0.0",
  20. "covert": "^1.1.0",
  21. "eslint": "^5.8.0",
  22. "jscs": "^3.0.7",
  23. "safe-publish-latest": "^1.1.2",
  24. "tape": "^4.9.1"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/dreamerslab/node.extend.git"
  29. },
  30. "contributors": [
  31. {
  32. "name": "Jordan Harband",
  33. "twitter": "https://twitter.com/ljharb"
  34. }
  35. ],
  36. "main": "index",
  37. "scripts": {
  38. "prepublish": "safe-publish-latest",
  39. "pretest": "npm run lint",
  40. "test": "npm run --silent tests-only",
  41. "posttest": "npm run coverage-quiet",
  42. "tests-only": "node test",
  43. "coverage": "covert test/index.js",
  44. "coverage-quiet": "covert test/index.js --quiet",
  45. "lint": "npm run jscs && npm run eslint .",
  46. "jscs": "jscs *.js */*.js",
  47. "eslint": "eslint"
  48. },
  49. "engines": {
  50. "node": ">=0.4.0"
  51. },
  52. "testling": {
  53. "files": "test/index.js",
  54. "browsers": [
  55. "iexplore/6.0..latest",
  56. "firefox/3.0..6.0",
  57. "firefox/15.0..latest",
  58. "firefox/nightly",
  59. "chrome/4.0..10.0",
  60. "chrome/20.0..latest",
  61. "chrome/canary",
  62. "opera/10.0..latest",
  63. "opera/next",
  64. "safari/4.0..latest",
  65. "ipad/6.0..latest",
  66. "iphone/6.0..latest"
  67. ]
  68. },
  69. "license": "(MIT OR GPL-2.0)"
  70. }