This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
risk-dice-modifier/package.json

62 lines
2.0 KiB
JSON

{
"private": true,
"name": "risk-dice-modifier",
"description": "An implementation of risk rolls as found for example in the Splittermond game system",
"version": "1.0.1",
"license": "(MIT AND BSD-2-Clause AND CC-BY-4.0)",
"homepage": "https://git.f3l.de/ghost/risk-dice-modifier",
"repository": {
"type": "git",
"url": "https://git.f3l.de/ghost/risk-dice-modifier"
},
"bugs": {
"url": "https://git.f3l.de/ghost/risk-dice-modifier/-/issues"
},
"contributors": [
{
"name": "Johannes Loher",
"email": "johannes.loher@fg4f.de"
}
],
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"link-project": "gulp link",
"clean": "gulp clean",
"clean:link": "gulp link --clean",
"bump-version": "gulp bumpVersion",
"lint": "eslint --ext .ts,.js .",
"lint:fix": "eslint --ext .ts,.js --fix .",
"format": "prettier --write \"./**/*.(ts|js|json)\"",
"postinstall": "husky install"
},
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "0.8.9-7",
"@rollup/plugin-node-resolve": "13.0.6",
"@types/fs-extra": "9.0.13",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"chalk": "4.1.2",
"eslint": "8.1.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"fs-extra": "10.0.0",
"gulp": "4.0.2",
"husky": "7.0.4",
"json-stringify-pretty-compact": "3.0.0",
"lint-staged": "11.2.6",
"prettier": "2.4.1",
"rollup": "2.58.3",
"rollup-plugin-typescript2": "0.30.0",
"semver": "7.3.5",
"tslib": "2.3.1",
"typescript": "4.4.4",
"yargs": "17.2.1"
},
"lint-staged": {
"*.(ts|js)": "eslint --fix",
"*.json": "prettier --write"
},
"packageManager": "yarn@3.0.2"
}