mirror of
https://github.com/Nighthawk42/roll20-character-sheets.git
synced 2026-08-30 03:40:32 +00:00
30 lines
766 B
JSON
30 lines
766 B
JSON
{
|
|
"name": "sheettemplate",
|
|
"version": "1.0.0",
|
|
"description": "Character sheet development in VS Code",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"pug": "^2.0.4",
|
|
"node-sass": "^4.5.3",
|
|
"npm-run-all": "^4.1.1"
|
|
},
|
|
"scripts": {
|
|
"start": "npm-run-all --parallel compile:sass compile:pug",
|
|
"compile:sass": "node-sass outbreak.scss outbreak.css -w",
|
|
"compile:pug": "pug outbreak.pug outbreak.html -w"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/clevett/SheetTemplate.git"
|
|
},
|
|
"keywords": [
|
|
"Roll20"
|
|
],
|
|
"author": "Cassie Levett",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/clevett/SheetTemplate/issues"
|
|
},
|
|
"homepage": "https://github.com/clevett/SheetTemplate#readme"
|
|
}
|