您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "nice-try",
  3. "version": "1.0.5",
  4. "authors": [
  5. "Tobias Reich <tobias@electerious.com>"
  6. ],
  7. "description": "Tries to execute a function and discards any error that occurs",
  8. "main": "src/index.js",
  9. "keywords": [
  10. "try",
  11. "catch",
  12. "error"
  13. ],
  14. "license": "MIT",
  15. "homepage": "https://github.com/electerious/nice-try",
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/electerious/nice-try.git"
  19. },
  20. "files": [
  21. "src"
  22. ],
  23. "scripts": {
  24. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  25. "test": "nyc node_modules/mocha/bin/_mocha"
  26. },
  27. "devDependencies": {
  28. "chai": "^4.1.2",
  29. "coveralls": "^3.0.0",
  30. "nyc": "^12.0.1",
  31. "mocha": "^5.1.1"
  32. }
  33. }