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-07-23 22:29:43 +02:00
|
|
|
"@league-of-foundry-developers/foundry-vtt-types": "0.7.9-6",
|
2021-07-23 22:58:29 +02:00
|
|
|
"@rollup/plugin-node-resolve": "13.0.2",
|
2021-07-23 23:31:30 +02:00
|
|
|
"@types/fs-extra": "9.0.12",
|
2021-07-24 04:14:32 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.28.4",
|
|
|
|
"@typescript-eslint/parser": "4.28.4",
|
2021-07-23 22:29:43 +02:00
|
|
|
"chalk": "4.1.1",
|
2021-07-24 00:23:20 +02:00
|
|
|
"eslint": "7.31.0",
|
2021-07-23 22:29:43 +02:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
|
|
|
"eslint-plugin-prettier": "3.4.0",
|
|
|
|
"fs-extra": "10.0.0",
|
|
|
|
"gulp": "4.0.2",
|
2021-07-24 05:14:54 +02:00
|
|
|
"husky": "7.0.1",
|
2021-07-23 22:29:43 +02:00
|
|
|
"json-stringify-pretty-compact": "3.0.0",
|
2021-07-24 01:14:39 +02:00
|
|
|
"lint-staged": "11.1.0",
|
2021-07-23 23:40:51 +02:00
|
|
|
"prettier": "2.3.2",
|
2021-07-24 02:15:04 +02:00
|
|
|
"rollup": "2.53.3",
|
2021-07-23 22:29:43 +02:00
|
|
|
"rollup-plugin-typescript2": "0.30.0",
|
|
|
|
"semver": "7.3.5",
|
2021-07-24 03:14:40 +02:00
|
|
|
"tslib": "2.3.0",
|
2021-07-23 23:41:20 +02:00
|
|
|
"typescript": "4.3.5",
|
2021-07-23 22:29:43 +02:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|