{"id":26670885,"url":"https://github.com/williampansky/pansky-boilerplate","last_synced_at":"2026-04-14T06:03:39.132Z","repository":{"id":58225040,"uuid":"78652647","full_name":"williampansky/pansky-boilerplate","owner":"williampansky","description":"Simple boilerplate repo with how I generally organize my project assets.","archived":false,"fork":false,"pushed_at":"2017-12-27T17:11:52.000Z","size":2614,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-14T04:32:48.394Z","etag":null,"topics":["babel","boilerplate","gulp","scss"],"latest_commit_sha":null,"homepage":"","language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/williampansky.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-11T15:34:57.000Z","updated_at":"2022-05-07T02:44:03.000Z","dependencies_parsed_at":"2022-08-31T01:00:13.335Z","dependency_job_id":null,"html_url":"https://github.com/williampansky/pansky-boilerplate","commit_stats":null,"previous_names":["williampansky/pansky-sass"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/williampansky/pansky-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williampansky%2Fpansky-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williampansky%2Fpansky-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williampansky%2Fpansky-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williampansky%2Fpansky-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/williampansky","download_url":"https://codeload.github.com/williampansky/pansky-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/williampansky%2Fpansky-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31533823,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babel","boilerplate","gulp","scss"],"created_at":"2025-03-25T22:46:42.617Z","updated_at":"2026-04-07T23:31:33.888Z","avatar_url":"https://github.com/williampansky.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Readme\nSeed repository for proper Sass and JavaScript coding standards, best practices, proper commenting, and file architecture.\n\n### Installation\nDownload and extract the ZIP or clone this repo to your project and then rename the folder accordingly to your needs (e.g: `assets/`). The directory structure is as follows:\n\n```\nroot/\n|\n|-- dist/ ------------------ Distribution folder of production-ready assets\n|  |-- css/ ---------------- Minified CSS files\n|  |-- js/ ----------------- Minified JS files\n|\n|-- docs/ ------------------ Documentation folder; see index.html file\n|  |-- dist/\n|  |  |-- js/ -------------- Auto-generated endpoint directory for jsDoc\n|  |  |-- sass/ ------------ Auto-generated endpoint directory for SassDoc\n|  |-- themes/\n|  |  |-- assets/ ---------- Doc-specific assets for our index.html page\n|  |  |-- docdash/ --------- Docdash theme for jsDoc\n|  |  |-- herman/ ---------- Herman theme for SassDoc [deprecated]\n|  |  |-- sassdoc/ --------- SassDoc's default theme with custom extensions\n|\n|-- src/ ------------------- Source file directory; i.e. working files\n|  |-- js/ ----------------- Root JavaScript file directory\n|  |-- scss/ --------------- Root Sass file directory\n|\n| ...\n```\n\n### Usage\n`cd` to your project directory and then simply `npm run gulp` in your CLI to run through the entire build process of minification, docs compilation, and BrowserSync watching.\n\nIf you want to run a single gulp task, such as only re-compiling SassDoc and jsDoc, you can `gulp --tasks` to see all available tasks.\n\n## SassDoc Annotation Syntax\nAnnotation | Description\n:--- | :---\n@access | Access of the documented item.\n@alias | Whether the documented item is an alias of another item.\n@author | Author of the documented item.\n@content | Whether the documented mixin uses the @content directive.\n@deprecated | Whether the documented item is deprecated.\n@example | Example for the documented item.\n@group | Group the documented item belongs to.\n@ignore | Ignored content.\n@link | Link related to the documented item.\n@name | Name of the documented item.\n@output | Output from the documented mixin.\n@param | Parameters from the documented mixin or function.\n@prop | Property of the documented map.\n@requires | Requirements from the documented item.\n@returns | Return from the documented function.\n@see | Resource related to the documented item.\n@since | Changelog for the documented item.\n@throws | Exceptions raised by the documented item.\n@todo | Things to do related to the documented item.\n@type | Describes the type of a variable.\n\n## jsDoc Annotation Syntax\nAnnotation | Description\n:--- | :---\n@abstract | Identifies members that must be implemented (or overridden) by objects that inherit the member.\n@access | Specify the access level of this member (private, package-private, public, or protected).\n@alias | Treat a member as if it had a different name.\n@async | Indicate that a function is asynchronous.\n@augments | Indicate that a symbol inherits from, and adds to, a parent symbol.\n@author | Identify the author of an item.\n@borrows | This object uses something from another object.\n@callback | Document a callback function.\n@class | This function is intended to be called with the \"new\" keyword.\n@classdesc | Use the following text to describe the entire class.\n@constant | Document an object as a constant.\n@constructs | This function member will be the constructor for the previous class.\n@copyright | Document some copyright information.\n@default | Document the default value.\n@deprecated | Document that this is no longer the preferred way.\n@description | Describe a symbol.\n@enum | Document a collection of related properties.\n@event | Document an event.\n@example | Provide an example of how to use a documented item.\n@exports | Identify the member that is exported by a JavaScript module.\n@external | Identifies an external class, namespace, or module.\n@file | Describe a file.\n@fires | Describe the events this method may fire.\n@function | Describe a function or method.\n@generator | Indicate that a function is a generator function.\n@global | Document a global object.\n@hideconstructor | Indicate that the constructor should not be displayed.\n@ignore | Omit a symbol from the documentation.\n@implements | This symbol implements an interface.\n@inheritdoc | Indicate that a symbol should inherit its parent's documentation.\n@inner | Document an inner object.\n@instance | Document an instance member.\n@interface | This symbol is an interface that others can implement.\n@kind | What kind of symbol is this?\n@lends | Document properties on an object literal as if they belonged to a symbol with a given name.\n@license | Identify the license that applies to this code.\n@listens | List the events that a symbol listens for.\n@member  | Document a member.\n@memberof | This symbol belongs to a parent symbol.\n@mixes | This object mixes in all the members from another object.\n@mixin | Document a mixin object.\n@module  | Document a JavaScript module.\n@name | Document the name of an object.\n@namespace | Document a namespace object.\n@override | Indicate that a symbol overrides its parent.\n@package | This symbol is meant to be package-private.\n@param | Document the parameter to a function.\n@private | This symbol is meant to be private.\n@prop | Document a property of an object.\n@protected | This symbol is meant to be protected.\n@public | This symbol is meant to be public.\n@readonly | This symbol is meant to be read-only.\n@requires | This file requires a JavaScript module.\n@returns | Document the return value of a function.\n@see | Refer to some other documentation for more information.\n@since | When was this feature added?\n@static | Document a static member.\n@summary | A shorter version of the full description.\n@this | What does the 'this' keyword refer to here?\n@throws | Describe what errors could be thrown.\n@todo | Document tasks to be completed.\n@tutorial | Insert a link to an included tutorial file.\n@type | Document the type of an object.\n@typedef | Document a custom type.\n@variation | Distinguish different objects with the same name.\n@version | Documents the version number of an item.\n@yields | Document the value yielded by a generator function.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliampansky%2Fpansky-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwilliampansky%2Fpansky-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwilliampansky%2Fpansky-boilerplate/lists"}