版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

55 lines
1.1 KiB

  1. {
  2. "name": "fined",
  3. "version": "2.0.0",
  4. "description": "Find a file given a declaration of locations.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Takayuki Sato <sttk.xslet@gmail.com>",
  8. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  9. ],
  10. "repository": "gulpjs/fined",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 10.13.0"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "index.js",
  18. "LICENSE"
  19. ],
  20. "scripts": {
  21. "lint": "eslint .",
  22. "pretest": "npm run lint",
  23. "test": "nyc mocha --async-only"
  24. },
  25. "dependencies": {
  26. "expand-tilde": "^2.0.2",
  27. "is-plain-object": "^5.0.0",
  28. "object.defaults": "^1.1.0",
  29. "object.pick": "^1.3.0",
  30. "parse-filepath": "^1.0.2"
  31. },
  32. "devDependencies": {
  33. "eslint": "^7.32.0",
  34. "eslint-config-gulp": "^5.0.1",
  35. "eslint-plugin-node": "^11.1.0",
  36. "expect": "^27.3.1",
  37. "mocha": "^8.4.0",
  38. "nyc": "^15.1.0"
  39. },
  40. "nyc": {
  41. "reporter": [
  42. "lcov",
  43. "text-summary"
  44. ]
  45. },
  46. "prettier": {
  47. "singleQuote": true
  48. },
  49. "keywords": [
  50. "find",
  51. "lookup",
  52. "config"
  53. ]
  54. }