darkness-dependent-vision/package.json

55 lines
1.6 KiB
JSON
Raw Normal View History

2021-06-29 05:27:27 +02:00
{
"private": true,
"name": "darkness-dependent-vision",
2021-10-26 23:45:20 +02:00
"version": "0.2.1",
2021-06-29 21:07:13 +02:00
"description": "A module for Foundry Virtual Tabletop that provides functionality to make the dim and bright vision of tokens depend on the scene's darkness level.",
"license": "https://git.f3l.de/ghost/darkness-dependent-vision#licensing",
2021-06-29 05:27:27 +02:00
"homepage": "https://git.f3l.de/ghost/darkness-dependent-vision",
"repository": {
"type": "git",
"url": "https://git.f3l.de/ghost/darkness-dependent-vision"
},
"bugs": {
"url": "https://git.f3l.de/ghost/darkness-dependent-vision/-/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 .js .",
"lint:fix": "eslint --ext .js --fix .",
"format": "prettier --write \"./**/*.(js|json|css|yml)\"",
2021-06-29 05:27:27 +02:00
"postinstall": "husky install"
},
"devDependencies": {
2021-07-23 23:57:36 +02:00
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
2021-07-30 14:15:08 +02:00
"chalk": "4.1.2",
2021-10-23 00:19:31 +02:00
"eslint": "8.1.0",
2021-07-23 23:57:36 +02:00
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
2021-07-23 23:57:36 +02:00
"fs-extra": "10.0.0",
"gulp": "4.0.2",
2021-10-21 04:19:48 +02:00
"husky": "7.0.4",
"lint-staged": "11.2.6",
2021-09-16 08:17:09 +02:00
"prettier": "2.4.1",
2021-10-25 16:18:38 +02:00
"rollup": "2.58.3",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
2021-07-23 23:57:36 +02:00
"semver": "7.3.5",
2021-09-26 00:17:28 +02:00
"yargs": "17.2.1"
2021-06-29 05:27:27 +02:00
},
"lint-staged": {
"*.(js)": "eslint --fix",
"*.(json|css|yml)": "prettier --write"
2021-06-29 05:27:27 +02:00
}
}