package.json 928 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "extend2",
  3. "author": "popomore <sakura9515@gmail.com>",
  4. "version": "1.0.1",
  5. "description": "Port of jQuery.extend for node.js and the browser",
  6. "main": "index",
  7. "scripts": {
  8. "test": "npm run lint && npm run tests-only && npm run coverage-quiet",
  9. "tests-only": "node test",
  10. "coverage": "covert test/index.js",
  11. "coverage-quiet": "covert test/index.js --quiet",
  12. "lint": "npm run eslint",
  13. "eslint": "eslint *.js */*.js",
  14. "ci": "npm run test"
  15. },
  16. "keywords": [
  17. "extend",
  18. "clone",
  19. "merge"
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/eggjs/extend2.git"
  24. },
  25. "dependencies": {},
  26. "devDependencies": {
  27. "covert": "^1.1.0",
  28. "eslint": "^3.2.2",
  29. "eslint-config-egg": "^3.2.0",
  30. "tape": "^4.6.0"
  31. },
  32. "license": "MIT",
  33. "files": [
  34. "index.js"
  35. ],
  36. "ci": {
  37. "type": "github",
  38. "version": "6, 8, 10, 12, 14, 16"
  39. }
  40. }