package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "name": "gulp-print",
  3. "version": "5.0.0",
  4. "description": "Prints names of files to the console so that you can see what's going through the the gulp pipe.",
  5. "files": [
  6. "./gulp-print.d.ts",
  7. "./gulp-print.js",
  8. "./gulp-print.js.map"
  9. ],
  10. "keywords": [
  11. "gulpplugin",
  12. "log",
  13. "print",
  14. "debug",
  15. "status"
  16. ],
  17. "homepage": "https://github.com/alexgorbatchev/gulp-print",
  18. "bugs": "https://github.com/alexgorbatchev/gulp-print/issues",
  19. "author": {
  20. "name": "Alex Gorbatchev",
  21. "url": "https://github.com/alexgorbatchev"
  22. },
  23. "main": "./gulp-print.js",
  24. "types": "./gulp-print.d.ts",
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/alexgorbatchev/gulp-print.git"
  28. },
  29. "scripts": {
  30. "mocha": "mocha --opts __tests__/mocha.opts __tests__/*.test.ts",
  31. "test": "npm run mocha && npm run tsc && node ./gulp-print.js",
  32. "eslint": "eslint src/*.ts __tests__/*.ts",
  33. "tsc": "tsc -p src/tsconfig.json",
  34. "prepublish": "npm run eslint && npm test"
  35. },
  36. "dependencies": {
  37. "ansi-colors": "^2.0.1",
  38. "fancy-log": "^1.3.2",
  39. "map-stream": "0.0.7",
  40. "vinyl": "^2.1.0"
  41. },
  42. "devDependencies": {
  43. "@types/ansi-colors": "^1.0.0",
  44. "@types/chai": "^4.1.2",
  45. "@types/fancy-log": "^1.3.0",
  46. "@types/gulp-util": "^3.0.31",
  47. "@types/mocha": "^5.0.0",
  48. "@types/node": "^10.0.3",
  49. "@types/sinon": "^4.1.3",
  50. "@types/sinon-chai": "^2.7.29",
  51. "@types/vinyl": "^2.0.2",
  52. "chai": "^4.1.2",
  53. "eslint": "^4.7.2",
  54. "eslint-config-airbnb": "^16.0.0",
  55. "eslint-config-prettier": "^2.6.0",
  56. "eslint-config-typescript": "^1.0.2",
  57. "eslint-formatter-pretty": "^1.3.0",
  58. "eslint-import-resolver-typescript": "^1.0.0",
  59. "eslint-loader": "^2.0.0",
  60. "eslint-plugin-import": "^2.7.0",
  61. "eslint-plugin-jsx-a11y": "^6.0.2",
  62. "eslint-plugin-prettier": "^2.3.1",
  63. "eslint-plugin-react": "^7.3.0",
  64. "eslint-plugin-typescript": "^0.9.0",
  65. "mocha": "^5.0.0",
  66. "mocha-clean": "^1.0.0",
  67. "prettier": "^1.7.0",
  68. "sinon": "^5.0.0",
  69. "sinon-chai": "^3.0.0",
  70. "ts-node": "^6.0.0",
  71. "typescript": "^2.5.3",
  72. "typescript-eslint-parser": "^15.0.0"
  73. },
  74. "engines": {
  75. "node": ">=6"
  76. },
  77. "license": "MIT"
  78. }