sass-site/package.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2022-12-12 23:07:23 +01:00
{
"name": "sass-site",
"version": "1.0.0",
2023-01-06 23:37:45 +01:00
"homepage": "https://sass-lang.com/",
"title": "Sass",
"description": "Sass: Syntactically Awesome Style Sheets",
2022-12-12 23:07:23 +01:00
"repository": {
"type": "git",
"url": "https://github.com/sass/sass-site.git"
},
2023-01-06 23:37:45 +01:00
"private": true,
2022-12-12 23:07:23 +01:00
"license": "MIT",
"engines": {
2023-01-06 21:35:17 +01:00
"node": "^16",
"yarn": "^3"
2022-12-12 23:07:23 +01:00
},
2023-01-06 23:37:45 +01:00
"type": "module",
2022-12-12 23:07:23 +01:00
"packageManager": "yarn@3.3.0",
"scripts": {
2023-01-06 22:40:29 +01:00
"serve": "run-p 'watch:**'",
"build": "run-s 'build:**'",
"build:sass": "sass --style=compressed ./source/assets/sass/sass.scss:./source/assets/dist/css/sass.css ./source/assets/sass/noscript.scss:./source/assets/dist/css/noscript.css",
"watch:sass": "sass --watch ./source/assets/sass/sass.scss:./source/assets/dist/css/sass.css ./source/assets/sass/noscript.scss:./source/assets/dist/css/noscript.css",
"build:11ty": "eleventy --config=.eleventy.cjs",
"watch:11ty": "eleventy --config=.eleventy.cjs --serve",
2022-12-12 23:07:23 +01:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
2023-01-06 22:40:29 +01:00
"@11ty/eleventy": "^1.0.2",
"npm-run-all": "^4.1.5",
"sass": "^1.57.1"
2022-12-12 23:07:23 +01:00
}
}