1234567891011121314151617181920212223242526272829303132333435 |
- {
- "author": "Derek Worthen",
- "license": "MIT",
- "name": "yaml-front-matter",
- "description": "yaml front matter for JS. Parse yaml or JSON from the beginning of files.",
- "version": "3.4.1",
- "keywords": [
- "yaml"
- ],
- "repository": {
- "type": "git",
- "url": "git+https://github.com/dworthen/js-yaml-front-matter"
- },
- "dependencies": {
- "commander": "1.0.0",
- "js-yaml": "^3.5.2"
- },
- "devDependencies": {
- "browser-sync": "^2.11.1",
- "gulp": "^3.9.0",
- "gulp-concat": "^2.6.0",
- "gulp-rename": "^1.2.2",
- "gulp-sourcemaps": "^1.6.0",
- "gulp-uglify": "^1.5.1",
- "mocha": "~1.3.0",
- "should": "0.6.3"
- },
- "bin": {
- "yaml-front-matter": "bin/js-yaml-front.js"
- },
- "scripts": {
- "test": "mocha -u bdd --reporter spec",
- "start": "gulp serve"
- }
- }
|