mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 19:52:29 +00:00
Bumps [postcss](https://github.com/postcss/postcss) to 8.4.31 and updates ancestor dependencies [postcss](https://github.com/postcss/postcss), [autoprefixer](https://github.com/postcss/autoprefixer) and [postcss-cli](https://github.com/postcss/postcss-cli). These dependencies need to be updated together. Updates `postcss` from 7.0.39 to 8.4.31 - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/7.0.39...8.4.31) Updates `autoprefixer` from 9.8.0 to 10.4.16 - [Release notes](https://github.com/postcss/autoprefixer/releases) - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/autoprefixer/compare/9.8.0...10.4.16) Updates `postcss-cli` from 7.1.1 to 10.1.0 - [Release notes](https://github.com/postcss/postcss-cli/releases) - [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss-cli/compare/7.1.1...10.1.0) --- updated-dependencies: - dependency-name: postcss dependency-type: indirect - dependency-name: autoprefixer dependency-type: direct:development - dependency-name: postcss-cli dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
43 lines
1.8 KiB
JSON
43 lines
1.8 KiB
JSON
{
|
|
"name": "fhtagn-character-sheet",
|
|
"version": "1.0.0",
|
|
"description": "Roll20 Character Sheet made for FHTAGN RPG",
|
|
"main": "index.html",
|
|
"scripts": {
|
|
"build:pug:prod": "cross-env NODE_ENV=production node compile-pug.js",
|
|
"build:pug:dev": "cross-env NODE_ENV=development node compile-pug.js",
|
|
"build:scss": "node-sass --output-style compressed -o . src/scss",
|
|
"build:autoprefixer": "./node_modules/.bin/postcss ./style.css -u autoprefixer --autoprefixer.browsers '> 5%' -d .",
|
|
"build:css": "npm run build:scss && npm run build:autoprefixer",
|
|
"watch:scss": "./node_modules/.bin/onchange 'src/scss/**/*.scss' -- npm run build:css",
|
|
"watch:pug:dev": "./node_modules/.bin/onchange 'src/**/*.pug' 'src/**/*.js' -- npm run build:pug:dev",
|
|
"watch:pug:prod": "./node_modules/.bin/onchange 'src/**/*.pug' 'src/**/*.js' -- npm run build:pug:prod",
|
|
"serve": "browser-sync start --server --files './*.css, ./*.html'",
|
|
"develop": "concurrently \"npm run serve\" \"npm run watch:scss\" \"npm run watch:pug:dev\"",
|
|
"build:watch": "concurrently \"npm run watch:scss\" \"npm run watch:pug:prod\"",
|
|
"build": "npm run build:css && npm run build:pug:prod",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Kampfzwerg/roll20-character-sheets.git"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/Kampfzwerg/roll20-character-sheets/issues"
|
|
},
|
|
"homepage": "https://github.com/Kampfzwerg/roll20-character-sheets#readme",
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.16",
|
|
"concurrently": "^5.2.0",
|
|
"cross-env": "^7.0.2",
|
|
"node-sass": "^9.0.0",
|
|
"onchange": "^7.0.2",
|
|
"postcss-cli": "^10.1.0",
|
|
"pug": "^3.0.1",
|
|
"pug-cli": "^1.0.0-alpha6"
|
|
},
|
|
"dependencies": {}
|
|
}
|