2020-10-29 16:18:38 +01:00
|
|
|
{
|
2020-12-23 17:09:02 +01:00
|
|
|
"private": true,
|
2021-02-07 12:38:45 +01:00
|
|
|
"name": "dungeonslayers4",
|
2020-12-31 05:02:38 +01:00
|
|
|
"description": "An implementation of the Dungeonslayers 4 game system for Foundry Virtual Tabletop.",
|
2021-10-03 02:25:12 +02:00
|
|
|
"version": "1.9.0",
|
2021-06-26 22:02:00 +02:00
|
|
|
"license": "https://git.f3l.de/dungeonslayers/ds4#licensing",
|
2020-12-31 05:02:38 +01:00
|
|
|
"homepage": "https://git.f3l.de/dungeonslayers/ds4",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://git.f3l.de/dungeonslayers/ds4"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://git.f3l.de/dungeonslayers/ds4/-/issues"
|
|
|
|
},
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "Johannes Loher",
|
|
|
|
"email": "johannes.loher@fg4f.de"
|
|
|
|
},
|
|
|
|
{
|
2021-01-03 16:38:33 +01:00
|
|
|
"name": "Gesina Schwalbe",
|
|
|
|
"email": "gesina.schwalbe@pheerai.de"
|
2020-12-31 05:02:38 +01:00
|
|
|
},
|
|
|
|
{
|
2021-01-03 16:38:33 +01:00
|
|
|
"name": "Oliver Rümpelein",
|
|
|
|
"email": "foundryvtt@pheerai.de"
|
2021-01-10 21:51:47 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Siegfried Krug",
|
|
|
|
"email": "foundryvtt@asdil1991.de"
|
2021-06-26 22:02:00 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Max Tharr"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Sascha Martens"
|
2020-12-31 05:02:38 +01:00
|
|
|
}
|
|
|
|
],
|
2020-12-23 17:09:02 +01:00
|
|
|
"scripts": {
|
2020-12-23 20:33:19 +01:00
|
|
|
"build": "gulp build",
|
2020-12-23 17:09:02 +01:00
|
|
|
"build:watch": "gulp watch",
|
2021-02-11 13:57:14 +01:00
|
|
|
"link-project": "gulp link",
|
2021-03-17 12:15:25 +01:00
|
|
|
"clean": "gulp clean",
|
|
|
|
"clean:link": "gulp link --clean",
|
|
|
|
"bump-version": "gulp bumpVersion",
|
|
|
|
"lint": "eslint --ext .ts,.js .",
|
|
|
|
"lint:fix": "eslint --ext .ts,.js --fix .",
|
2021-02-11 13:42:38 +01:00
|
|
|
"test": "jest",
|
2021-03-13 02:27:09 +01:00
|
|
|
"test:watch": "jest --watch",
|
2021-02-11 13:42:38 +01:00
|
|
|
"test:ci": "jest --ci --reporters=default --reporters=jest-junit",
|
2021-03-17 12:15:25 +01:00
|
|
|
"format": "prettier --write \"./**/*.(ts|js|json|scss)\"",
|
2021-08-19 04:01:55 +02:00
|
|
|
"typecheck": "tsc --noEmit",
|
2021-09-14 17:10:23 +02:00
|
|
|
"postinstall": "husky install",
|
2021-09-14 19:11:18 +02:00
|
|
|
"changelog": "conventional-changelog -n changelog.config.js -o CHANGELOG.md -r 2"
|
2020-12-23 17:09:02 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-10-09 11:17:31 +02:00
|
|
|
"@commitlint/cli": "13.2.1",
|
2021-09-28 04:17:25 +02:00
|
|
|
"@commitlint/config-conventional": "13.2.0",
|
2021-10-15 02:17:47 +02:00
|
|
|
"@league-of-foundry-developers/foundry-vtt-types": "0.8.9-7",
|
2021-09-22 01:17:45 +02:00
|
|
|
"@seald-io/nedb": "2.0.4",
|
2021-09-21 21:17:25 +02:00
|
|
|
"@types/fs-extra": "9.0.13",
|
2021-09-21 04:17:35 +02:00
|
|
|
"@types/jest": "27.0.2",
|
2021-10-11 20:17:53 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.0.0",
|
|
|
|
"@typescript-eslint/parser": "5.0.0",
|
2021-07-30 14:15:25 +02:00
|
|
|
"chalk": "4.1.2",
|
2021-09-14 17:10:23 +02:00
|
|
|
"conventional-changelog-cli": "2.1.1",
|
|
|
|
"conventional-changelog-conventionalcommits": "4.6.1",
|
2021-10-14 05:18:03 +02:00
|
|
|
"eslint": "8.0.1",
|
2021-07-23 23:58:28 +02:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
2021-10-15 03:17:35 +02:00
|
|
|
"eslint-plugin-jest": "25.2.1",
|
2021-08-30 22:17:24 +02:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2021-07-23 23:58:28 +02:00
|
|
|
"fs-extra": "10.0.0",
|
|
|
|
"gulp": "4.0.2",
|
|
|
|
"gulp-sass": "5.0.0",
|
2021-08-25 04:16:49 +02:00
|
|
|
"husky": "7.0.2",
|
2021-10-08 16:17:31 +02:00
|
|
|
"jest": "27.2.5",
|
2021-10-04 20:17:23 +02:00
|
|
|
"jest-junit": "13.0.0",
|
2021-10-10 20:17:50 +02:00
|
|
|
"lint-staged": "11.2.3",
|
2021-09-16 08:18:15 +02:00
|
|
|
"prettier": "2.4.1",
|
2021-10-02 01:29:06 +02:00
|
|
|
"rollup": "2.58.0",
|
2021-07-23 23:58:28 +02:00
|
|
|
"rollup-plugin-typescript2": "0.30.0",
|
2021-10-14 01:17:29 +02:00
|
|
|
"sass": "1.43.2",
|
2021-07-23 23:58:28 +02:00
|
|
|
"semver": "7.3.5",
|
2021-08-17 07:16:43 +02:00
|
|
|
"ts-jest": "27.0.5",
|
2021-08-12 01:16:02 +02:00
|
|
|
"tslib": "2.3.1",
|
2021-10-12 21:18:06 +02:00
|
|
|
"typescript": "4.4.4",
|
2021-09-26 00:17:49 +02:00
|
|
|
"yargs": "17.2.1"
|
2020-12-23 18:23:26 +01:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-12-30 23:00:06 +01:00
|
|
|
"*.ts": "eslint --cache --fix",
|
2020-12-30 23:05:57 +01:00
|
|
|
"*.(json|scss)": "prettier --write"
|
2020-12-23 17:09:02 +01:00
|
|
|
}
|
2020-10-29 16:18:38 +01:00
|
|
|
}
|