2021-02-07 16:01:14 +01:00
|
|
|
{
|
|
|
|
"private": true,
|
2021-02-07 19:06:21 +01:00
|
|
|
"name": "risk-dice-modifier",
|
|
|
|
"description": "An implementation of risk rolls as found for example in the Splittermond game system",
|
2021-06-05 01:41:53 +02:00
|
|
|
"version": "1.0.1",
|
2021-06-05 00:52:11 +02:00
|
|
|
"license": "(MIT AND BSD-2-Clause AND CC-BY-4.0)",
|
2021-02-07 19:06:21 +01:00
|
|
|
"homepage": "https://git.f3l.de/ghost/risk-dice-modifier",
|
2021-02-07 16:01:14 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-02-07 19:06:21 +01:00
|
|
|
"url": "https://git.f3l.de/ghost/risk-dice-modifier"
|
2021-02-07 16:01:14 +01:00
|
|
|
},
|
|
|
|
"bugs": {
|
2021-02-07 19:06:21 +01:00
|
|
|
"url": "https://git.f3l.de/ghost/risk-dice-modifier/-/issues"
|
2021-02-07 16:01:14 +01:00
|
|
|
},
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Johannes Loher",
|
|
|
|
"email": "johannes.loher@fg4f.de"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "gulp build",
|
|
|
|
"build:watch": "gulp watch",
|
2021-05-23 02:46:03 +02:00
|
|
|
"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)\"",
|
2021-05-23 02:26:11 +02:00
|
|
|
"postinstall": "husky install"
|
2021-02-07 16:01:14 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-23 02:46:03 +02:00
|
|
|
"@league-of-foundry-developers/foundry-vtt-types": "^0.7.9-6",
|
2021-05-23 02:26:11 +02:00
|
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
|
|
"@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",
|
2021-02-07 16:01:14 +01:00
|
|
|
"gulp": "^4.0.2",
|
2021-05-23 02:26:11 +02:00
|
|
|
"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",
|
2021-05-23 02:46:03 +02:00
|
|
|
"semver": "^7.3.5",
|
2021-05-23 02:26:11 +02:00
|
|
|
"tslib": "^2.2.0",
|
|
|
|
"typescript": "^4.2.4",
|
|
|
|
"yargs": "^17.0.1"
|
2021-02-07 16:01:14 +01:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2021-05-23 02:46:03 +02:00
|
|
|
"*.(ts|js)": "eslint --fix",
|
2021-02-07 16:01:14 +01:00
|
|
|
"*.json": "prettier --write"
|
|
|
|
}
|
|
|
|
}
|