mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
31 lines
1023 B
JSON
31 lines
1023 B
JSON
{
|
|
"name": "roll20-character-sheets",
|
|
"version": "1.0.0",
|
|
"description": "compilers for character sheets",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"pug": "^2.0.4",
|
|
"autoprefixer": "^7.1.4",
|
|
"node-sass": "^4.5.3",
|
|
"npm-run-all": "^4.1.1",
|
|
"postcss-cli": "^4.1.1"
|
|
},
|
|
"scripts": {
|
|
"start": "npm-run-all --parallel compile:sass compile:pug",
|
|
"compile:sass": "node-sass Shadowrun4thEdition.scss Shadowrun4thEdition.css -w",
|
|
"compile:pug": "pug Shadowrun4thEdition.pug Shadowrun4thEdition.html -w",
|
|
"prefix:css": "postcss --use autoprefixer -b 'last 10 versions' css/style.comp.css -o css/style.prefix.css",
|
|
"build:css": "npm-run-all compile:sass prefix:css"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/clevett/roll20-character-sheets.git"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/clevett/roll20-character-sheets/issues"
|
|
},
|
|
"homepage": "https://github.com/clevett/roll20-character-sheets#readme"
|
|
}
|