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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "rechoir",
  3. "version": "0.8.0",
  4. "description": "Prepare a node environment to require files with different extensions.",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Blaine Bublitz <blaine.bublitz@gmail.com>",
  8. "Tyler Kellen <tyler@sleekcode.net> (http://goingslowly.com/)"
  9. ],
  10. "repository": "gulpjs/rechoir",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 10.13.0"
  14. },
  15. "main": "index.js",
  16. "files": [
  17. "LICENSE",
  18. "index.js",
  19. "lib/"
  20. ],
  21. "scripts": {
  22. "lint": "eslint .",
  23. "pretest": "rm -rf tmp/ && npm run lint",
  24. "test": "nyc mocha --async-only"
  25. },
  26. "dependencies": {
  27. "resolve": "^1.20.0"
  28. },
  29. "devDependencies": {
  30. "eslint": "^7.21.0",
  31. "eslint-config-gulp": "^5.0.1",
  32. "expect": "^27.0.0",
  33. "mocha": "^8.3.0",
  34. "nyc": "^15.1.0"
  35. },
  36. "nyc": {
  37. "reporter": [
  38. "lcov",
  39. "text-summary"
  40. ]
  41. },
  42. "prettier": {
  43. "singleQuote": true
  44. },
  45. "keywords": [
  46. "require",
  47. "loader",
  48. "extension",
  49. "extensions",
  50. "prepare"
  51. ]
  52. }