package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "copy-props",
  3. "version": "2.0.5",
  4. "description": "Copy properties deeply between two objects.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "lint": "eslint .",
  11. "test": "mocha",
  12. "coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
  13. "coveralls": "nyc --reporter=text-lcov npm test | coveralls",
  14. "web:build": "browserify index.js --standalone copyProps -o web/copy-props.js && cd web && uglifyjs copy-props.js --compress --mangle -o copy-props.min.js --source-map url=copy-props.min.js.map",
  15. "chrome:install": "npm i --no-save mocha-chrome",
  16. "chrome:test": "mocha-chrome test/web/browser-test.html",
  17. "build": "npm run lint && npm run coverage && npm run web:build && node test/web/make.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/gulpjs/copy-props.git"
  22. },
  23. "keywords": [
  24. "object",
  25. "property",
  26. "copy",
  27. "deep",
  28. "map",
  29. "convert"
  30. ],
  31. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  32. "license": "MIT",
  33. "bugs": {
  34. "url": "https://github.com/gulpjs/copy-props/issues"
  35. },
  36. "homepage": "https://github.com/gulpjs/copy-props#readme",
  37. "dependencies": {
  38. "each-props": "^1.3.2",
  39. "is-plain-object": "^5.0.0"
  40. },
  41. "devDependencies": {
  42. "browserify": "^16.5.2",
  43. "chai": "^3.5.0",
  44. "coveralls": "^3.1.0",
  45. "eslint": "^7.9.0",
  46. "eslint-config-gulp": "^5.0.1",
  47. "mocha": "^3.5.3",
  48. "nyc": "^15.1.0",
  49. "uglify-js": "^3.10.4"
  50. }
  51. }