package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "omit.js",
  3. "version": "1.0.2",
  4. "description": "Utility function to create a shallow copy of an object which had dropped some fields.",
  5. "main": "lib/index.js",
  6. "module": "es/index.js",
  7. "types": "index.d.ts",
  8. "files": [
  9. "lib",
  10. "es",
  11. "dist",
  12. "index.d.ts"
  13. ],
  14. "scripts": {
  15. "compile": "rc-tools run compile --babel-runtime",
  16. "test": "rc-test run test",
  17. "coverage": "rc-test run coverage",
  18. "lint": "rc-tools run lint",
  19. "eslint-fix": "eslint --fix ./index.js ./test",
  20. "build": "rc-tools run build",
  21. "gh-pages": "rc-tools run gh-pages",
  22. "start": "rc-tools run server",
  23. "pub": "rc-tools run pub --babel-runtime",
  24. "prepublish": "rc-tools run guard"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/benjycui/omit.js.git"
  29. },
  30. "keywords": [
  31. "object",
  32. "omit"
  33. ],
  34. "author": "Benjy Cui<benjytrys@gmail.com>",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/benjycui/omit.js/issues"
  38. },
  39. "homepage": "https://github.com/benjycui/omit.js#readme",
  40. "dependencies": {
  41. "babel-runtime": "^6.23.0"
  42. },
  43. "devDependencies": {
  44. "assert": "^1.4.1",
  45. "rc-test": "^6.0.7",
  46. "rc-tools": "^6.3.3"
  47. }
  48. }