package.json 814 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "author": "Derek Worthen",
  3. "license": "MIT",
  4. "name": "yaml-front-matter",
  5. "description": "yaml front matter for JS. Parse yaml or JSON from the beginning of files.",
  6. "version": "3.4.1",
  7. "keywords": [
  8. "yaml"
  9. ],
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/dworthen/js-yaml-front-matter"
  13. },
  14. "dependencies": {
  15. "commander": "1.0.0",
  16. "js-yaml": "^3.5.2"
  17. },
  18. "devDependencies": {
  19. "browser-sync": "^2.11.1",
  20. "gulp": "^3.9.0",
  21. "gulp-concat": "^2.6.0",
  22. "gulp-rename": "^1.2.2",
  23. "gulp-sourcemaps": "^1.6.0",
  24. "gulp-uglify": "^1.5.1",
  25. "mocha": "~1.3.0",
  26. "should": "0.6.3"
  27. },
  28. "bin": {
  29. "yaml-front-matter": "bin/js-yaml-front.js"
  30. },
  31. "scripts": {
  32. "test": "mocha -u bdd --reporter spec",
  33. "start": "gulp serve"
  34. }
  35. }