fleet/website/generators/landing-page/package.json
Eric 2c4dc043cb
Website: Add landing page generator (#11308)
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>
2023-05-03 18:51:01 -05:00

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"
}
}