hippie/package.json
sthag ef9d665849 Introduced 11ty
Set new version based on all changes since last version change, which was 0.4.2.

Removed obsolete devDependencies, now only using 11ty and sass.

Update to package.json fields

- New sass version
- Update to project links
- Rearranged fields
- New commands for 'scripts' that include changes from branch testing-npm-scripts
- Added field 'private' to prevent publishing by mistake

Added configuration for 11ty to reflect previous behaviour from gulp.

- Moved source/templates/demo/data.json to source/screens/demo.json so it can be used
- Fixed demo template so it can use the data source
- Removed source/data/demo.json which was not used
2023-10-25 20:25:09 +02:00

36 lines
1.4 KiB
JSON

{
"name": "hippie",
"version": "0.12.2",
"description": "Hippie interweaves preeminent personal interface elements",
"keywords": [
"hippie",
"www site template"
],
"homepage": "https://quelltext.interaktionsweise.de/interaktionsweise/hippie",
"bugs": "https://quelltext.interaktionsweise.de/interaktionsweise/hippie/issues",
"license": "MIT",
"author": "Stephan Hagedorn <sthag@interaktionsweise.de> (https://karte@interaktionsweise.de/)",
"main": "",
"repository": {
"type": "git",
"url": "https://quelltext.interaktionsweise.de/interaktionsweise/hippie.git"
},
"scripts": {
"hello": "echo -n \"This is \" && node -p \"process.env.npm_package_name\" | tr '[:lower:]' '[:upper:]'",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "npm run clean:build & npm run clean:deploy & npm run clean:report & npm run clean:test",
"clean:build": "rm -rf build/*",
"clean:deploy": "rm -rf deploy/*",
"clean:report": "rm -rf report/*",
"clean:test": "rm -rf test/*",
"style:compile": "sass source/style:build/css --load-path=vendor",
"style:watch": "sass --watch source/style:build/css --load-path=vendor",
"build:new": "npm run clean:build && npx @11ty/eleventy && npm run style:compile",
"build": "npx @11ty/eleventy && npm run style:compile"
},
"private": true,
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"sass": "^1.69.4"
}
}