Переглянути джерело

Start working on a site version

pull/259/head
James Brooks 7 роки тому
джерело
коміт
3da6614e8f
5 змінених файлів з 1327 додано та 0 видалено
  1. +1
    -0
      .gitignore
  2. +38
    -0
      apis.json
  3. +10
    -0
      gulpfile.js
  4. +8
    -0
      package.json
  5. +1270
    -0
      yarn.lock

+ 1
- 0
.gitignore Переглянути файл

@@ -0,0 +1 @@
node_modules/

+ 38
- 0
apis.json Переглянути файл

@@ -0,0 +1,38 @@
[
{
"category": "Animals",
"apis": [
{
"name": "IUCN",
"description": "IUCN Red List of Threatened Species",
"auth": "token",
"link": "http://apiv3.iucnredlist.org/api/v3/docs"
}, {
"name": "Petfinder",
"description": "Adoption",
"auth": "no",
"link": "https://www.petfinder.com/developers/api-docs/"
}, {
"name": "RescueGroups",
"description": "Adoption",
"auth": "no",
"link": "https://userguide.rescuegroups.org/display/APIDG/API+Developers+Guide+Home"
}
]
}, {
"category": "Anime",
"apis": [
{
"name": "AniList",
"description": "AniList Anime API",
"auth": "oAuth",
"link": "http://anilist-api.readthedocs.org/en/latest/#"
}, {
"name": "Hummingbird",
"description": "Hummingbird Anime API",
"auth": "no",
"link": "https://hummingbird.me/"
}
]
}
]

+ 10
- 0
gulpfile.js Переглянути файл

@@ -0,0 +1,10 @@
var gulp = require('gulp'),
jsonLint = require('gulp-jsonlint');

gulp.task('lint', function() {
gulp.src('apis.json')
.pipe(jsonLint())
.pipe(jsonLint.reporter());
});

gulp.task('default', ['lint']);

+ 8
- 0
package.json Переглянути файл

@@ -0,0 +1,8 @@
{
"dependencies": {
"gulp": "*"
},
"devDependencies": {
"gulp-jsonlint": "^1.1.0"
}
}

+ 1270
- 0
yarn.lock
Різницю між файлами не показано, бо вона завелика
Переглянути файл


Завантаження…
Відмінити
Зберегти