package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "replace-ext",
  3. "version": "1.0.1",
  4. "description": "Replaces a file extension with another one",
  5. "author": "Gulp Team <team@gulpjs.com> (http://gulpjs.com/)",
  6. "contributors": [
  7. "Eric Schoffstall <yo@contra.io>",
  8. "Blaine Bublitz <blaine.bublitz@gmail.com>"
  9. ],
  10. "repository": "gulpjs/replace-ext",
  11. "license": "MIT",
  12. "engines": {
  13. "node": ">= 0.10"
  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. "cover": "nyc --reporter=lcov --reporter=text-summary npm test",
  25. "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit",
  26. "coveralls": "nyc report --reporter=text-lcov | coveralls"
  27. },
  28. "dependencies": {},
  29. "devDependencies": {
  30. "coveralls": "github:phated/node-coveralls#2.x",
  31. "eslint": "^2.13.1",
  32. "eslint-config-gulp": "^3.0.1",
  33. "expect": "^1.20.2",
  34. "mocha": "^3.0.0",
  35. "nyc": "^10.3.2"
  36. },
  37. "keywords": [
  38. "gulp",
  39. "extensions",
  40. "filepath",
  41. "basename"
  42. ]
  43. }