用工小程序前端代码
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.

54 lines
1.0 KiB

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. {
  2. "name": "glob-parent",
  3. "version": "6.0.2",
  4. "description": "Extract the non-magic parent path from a glob string.",
  5. "author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
  6. "contributors": [
  7. "Elan Shanker (https://github.com/es128)",
  8. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  9. ],
  10. "repository": "gulpjs/glob-parent",
  11. "license": "ISC",
  12. "engines": {
  13. "node": ">=10.13.0"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "LICENSE",
  18. "index.js"
  19. ],
  20. "scripts": {
  21. "lint": "eslint .",
  22. "pretest": "npm run lint",
  23. "test": "nyc mocha --async-only"
  24. },
  25. "dependencies": {
  26. "is-glob": "^4.0.3"
  27. },
  28. "devDependencies": {
  29. "eslint": "^7.0.0",
  30. "eslint-config-gulp": "^5.0.0",
  31. "expect": "^26.0.1",
  32. "mocha": "^7.1.2",
  33. "nyc": "^15.0.1"
  34. },
  35. "nyc": {
  36. "reporter": [
  37. "lcov",
  38. "text-summary"
  39. ]
  40. },
  41. "prettier": {
  42. "singleQuote": true
  43. },
  44. "keywords": [
  45. "glob",
  46. "parent",
  47. "strip",
  48. "path",
  49. "dirname",
  50. "directory",
  51. "base",
  52. "wildcard"
  53. ]
  54. }