60 lines
1.9 KiB
JSON
60 lines
1.9 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.7.9-6",
|
|
"@rollup/plugin-node-resolve": "13.0.2",
|
|
"@types/fs-extra": "9.0.11",
|
|
"@typescript-eslint/eslint-plugin": "4.24.0",
|
|
"@typescript-eslint/parser": "4.24.0",
|
|
"chalk": "4.1.1",
|
|
"eslint": "7.27.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "3.4.0",
|
|
"fs-extra": "10.0.0",
|
|
"gulp": "4.0.2",
|
|
"husky": "6.0.0",
|
|
"json-stringify-pretty-compact": "3.0.0",
|
|
"lint-staged": "11.0.0",
|
|
"prettier": "2.3.0",
|
|
"rollup": "2.48.0",
|
|
"rollup-plugin-typescript2": "0.30.0",
|
|
"semver": "7.3.5",
|
|
"tslib": "2.2.0",
|
|
"typescript": "4.2.4",
|
|
"yargs": "17.0.1"
|
|
},
|
|
"lint-staged": {
|
|
"*.(ts|js)": "eslint --fix",
|
|
"*.json": "prettier --write"
|
|
}
|
|
}
|