mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 00:45:19 +00:00
2c4dc043cb
Changes: - Added a new Sails generator, `landing-page`, that generates a page with our current landing page layout with lorum ipsum and placeholder images. New pages created by this generator will live in the `/imagine/` subfolder and can be created by running (from the `website/` folder) `. - Added a handbook entry about using the landing page generator. - Removed the `experimental/okta-webflow` page. --------- Co-authored-by: Jarod Reyes <jarodreyes@gmail.com> Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com>
27 lines
756 B
JSON
Vendored
27 lines
756 B
JSON
Vendored
{
|
|
"name": "@eashaw/sails-generate-landing-page",
|
|
"version": "1.0.0",
|
|
"description": "sails generate landing-page",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "echo 'No further automated tests have been implemented for this generator yet.'",
|
|
"pretest": "npm run lint",
|
|
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0"
|
|
},
|
|
"keywords": [
|
|
"landing-page",
|
|
"generator",
|
|
"sails",
|
|
"generate",
|
|
"plugin"
|
|
],
|
|
"author": "eashaw",
|
|
"license": "MIT",
|
|
"repository": {"type":"git","url":"git://github.com/eashaw/sails-generate-landing-page.git"},
|
|
"sailsGenerator": {
|
|
"type": "landing-page",
|
|
"behavior": "Implements or overrides `sails generate landing-page`",
|
|
"sailsVersion": "^1.0.0"
|
|
}
|
|
}
|