package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "vinyl",
  3. "description": "A virtual file format",
  4. "version": "1.2.0",
  5. "homepage": "http://github.com/gulpjs/vinyl",
  6. "repository": "git://github.com/gulpjs/vinyl.git",
  7. "author": "Fractal <contact@wearefractal.com> (http://wearefractal.com/)",
  8. "main": "./index.js",
  9. "files": [
  10. "index.js",
  11. "lib"
  12. ],
  13. "dependencies": {
  14. "clone": "^1.0.0",
  15. "clone-stats": "^0.0.1",
  16. "replace-ext": "0.0.1"
  17. },
  18. "devDependencies": {
  19. "buffer-equal": "0.0.1",
  20. "eslint": "^1.7.3",
  21. "eslint-config-gulp": "^2.0.0",
  22. "event-stream": "^3.1.0",
  23. "github-changes": "^1.0.1",
  24. "istanbul": "^0.3.0",
  25. "istanbul-coveralls": "^1.0.1",
  26. "jscs": "^2.3.5",
  27. "jscs-preset-gulp": "^1.0.0",
  28. "lodash.templatesettings": "^3.1.0",
  29. "mocha": "^2.0.0",
  30. "rimraf": "^2.2.5",
  31. "should": "^7.0.0"
  32. },
  33. "scripts": {
  34. "lint": "eslint . && jscs *.js lib/ test/",
  35. "pretest": "npm run lint",
  36. "test": "mocha",
  37. "coveralls": "istanbul cover _mocha && istanbul-coveralls",
  38. "changelog": "github-changes -o gulpjs -r vinyl -b master -f ./CHANGELOG.md --order-semver --use-commit-body"
  39. },
  40. "engines": {
  41. "node": ">= 0.9"
  42. },
  43. "license": "MIT"
  44. }