This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/draft-04/schema#", | |
"title": "JSON API Schema", | |
"description": "This is a schema for responses in the JSON API format. For more, see http://jsonapi.org", | |
"x-oneOf": [ | |
{ | |
"$ref": "#/definitions/success" | |
}, | |
{ | |
"$ref": "#/definitions/failure" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jshint browser:false, node:true, esnext: true */ | |
var gulp = require('gulp'); | |
var debug = require('gulp-debug'); // jshint ignore:line | |
var logger = require('gulp-logger'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var runSequence = require('run-sequence'); | |
var lazypipe = require('lazypipe'); | |
var uglify = require('gulp-uglify'); | |
var rename = require('gulp-rename'); |