ds4/package.json

82 lines
2.5 KiB
JSON
Raw Normal View History

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-06-07 19:28:44 +02:00
"version": "0.7.2",
2020-12-31 05:02:38 +01:00
"license": "MIT",
"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"
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",
"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-03-03 04:26:26 +01:00
"postinstall": "husky install"
2020-12-23 17:09:02 +01:00
},
"devDependencies": {
2021-05-29 21:51:23 +02:00
"@league-of-foundry-developers/foundry-vtt-types": "^0.7.10-0",
"@rollup/plugin-node-resolve": "^13.0.0",
2021-04-25 17:43:57 +02:00
"@types/fs-extra": "^9.0.11",
2021-05-29 21:51:23 +02:00
"@types/jest": "^26.0.23",
2021-06-07 18:43:45 +02:00
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
2021-04-25 17:43:57 +02:00
"chalk": "^4.1.1",
2021-06-07 18:43:45 +02:00
"eslint": "^7.28.0",
2021-04-25 17:43:57 +02:00
"eslint-config-prettier": "^8.3.0",
2021-05-29 21:51:23 +02:00
"eslint-plugin-jest": "^24.3.6",
2021-04-25 17:43:57 +02:00
"eslint-plugin-prettier": "^3.4.0",
2021-05-29 21:51:23 +02:00
"fs-extra": "^10.0.0",
2020-12-23 17:09:02 +01:00
"gulp": "^4.0.2",
"gulp-sass": "^4.1.0",
2021-05-29 21:51:23 +02:00
"husky": "^6.0.0",
2021-06-07 18:43:45 +02:00
"jest": "^27.0.4",
2021-05-29 21:51:23 +02:00
"jest-junit": "^12.1.0",
"lint-staged": "^11.0.0",
2021-06-07 18:43:45 +02:00
"prettier": "^2.3.1",
"rollup": "^2.51.0",
2021-03-17 12:15:25 +01:00
"rollup-plugin-typescript2": "^0.30.0",
2021-02-20 14:00:50 +01:00
"sass": "^1.32.8",
2021-04-25 17:43:57 +02:00
"semver": "^7.3.5",
2021-06-07 18:43:45 +02:00
"ts-jest": "^27.0.3",
2021-04-25 17:43:57 +02:00
"tslib": "^2.2.0",
2021-06-07 18:43:45 +02:00
"typescript": "^4.3.2",
2021-05-29 21:51:23 +02:00
"yargs": "^17.0.1"
2020-12-23 18:23:26 +01:00
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.(json|scss)": "prettier --write"
2020-12-23 17:09:02 +01:00
}
2020-10-29 16:18:38 +01:00
}