greenwood-starter-presentation
Version:
A Greenwood plugin and general purpose starter kit for creating slide decks and presentations from markdown.
57 lines (56 loc) • 2.06 kB
JSON
{
"name": "greenwood-starter-presentation",
"version": "0.8.1",
"description": "A Greenwood plugin and general purpose starter kit for creating slide decks and presentations from markdown.",
"main": "index.js",
"type": "module",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/greenwood-starter-presentation.git"
},
"keywords": [
"Greenwood",
"Slide Deck",
"presentation",
"slides",
"HTML",
"CSS",
"markdown"
],
"author": "Owen Buckley <owen@thegreenhouse.io>",
"license": "ISC",
"scripts": {
"clean": "rimraf public .greenwood/",
"build:win": "npm run build:pre-win && greenwood build",
"build": "npm run build:pre && greenwood build",
"build:pre": "mkdir -pv ./node_modules/greenwood-starter-presentation/dist && rsync -rv --exclude 'pages/' ./src/ ./node_modules/greenwood-starter-presentation/dist",
"build:pre-win": "rimraf node_modules\\greenwood-starter-presentation\\dist && mkdir node_modules\\greenwood-starter-presentation\\dist && xcopy src node_modules\\greenwood-starter-presentation\\dist\\ /e",
"develop": "greenwood develop",
"dist": "rsync -rv --exclude 'pages/' src/ dist",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint \"*.js\" \"./src/**/*.js\"",
"lint:css": "stylelint \"./src/**/*.js\", \"./src/**/*.css\"",
"prepublishOnly": "rm -rf dist/ && mkdir dist/ && npm run dist",
"serve": "npm run build:pre && greenwood build && greenwood serve",
"serve:win": "npm run build:pre-win && greenwood build && greenwood serve",
"start": "npm run develop"
},
"peerDependencies": {
"@greenwood/cli": "~0.29.0"
},
"dependencies": {
"@greenwood/plugin-import-css": "~0.29.0"
},
"devDependencies": {
"@greenwood/cli": "~0.29.0",
"@greenwood/plugin-import-css": "~0.29.0",
"eslint": "^8.4.0",
"rimraf": "^3.0.2",
"stylelint": "^13.12.0",
"stylelint-a11y": "^1.2.3",
"stylelint-config-standard": "^20.0.0"
}
}