darkness-dependent-vision/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

2021-06-29 05:27:27 +02:00
{
"private": true,
"name": "darkness-dependent-vision",
2021-07-13 14:11:41 +02:00
"version": "0.2.0",
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)\"",
"postinstall": "husky install"
},
"devDependencies": {
2021-07-23 23:57:36 +02:00
"@typhonjs-fvtt/eslint-config-foundry.js": "0.8.0",
"chalk": "4.1.1",
2021-07-24 00:23:54 +02:00
"eslint": "7.31.0",
2021-07-23 23:57:36 +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 03:15:00 +02:00
"husky": "7.0.1",
"lint-staged": "11.1.1",
2021-07-23 23:57:36 +02:00
"prettier": "2.3.2",
2021-07-28 07:15:57 +02:00
"rollup": "2.55.0",
2021-07-23 23:57:36 +02:00
"semver": "7.3.5",
"yargs": "17.0.1"
2021-06-29 05:27:27 +02:00
},
"lint-staged": {
"*.(js)": "eslint --fix",
"*.(json|css)": "prettier --write"
}
}