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." ,
2021-06-29 22:08:36 +02:00
"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" ,
2021-07-30 14:15:08 +02:00
"chalk" : "4.1.2" ,
2021-07-31 01:15:39 +02:00
"eslint" : "7.32.0" ,
2021-07-23 23:57:36 +02:00
"eslint-config-prettier" : "8.3.0" ,
2021-08-21 00:17:12 +02:00
"eslint-plugin-prettier" : "3.4.1" ,
2021-07-23 23:57:36 +02:00
"fs-extra" : "10.0.0" ,
"gulp" : "4.0.2" ,
2021-07-24 03:15:00 +02:00
"husky" : "7.0.1" ,
2021-08-06 07:16:14 +02:00
"lint-staged" : "11.1.2" ,
2021-07-23 23:57:36 +02:00
"prettier" : "2.3.2" ,
2021-08-23 07:16:58 +02:00
"rollup" : "2.56.3" ,
2021-07-23 23:57:36 +02:00
"semver" : "7.3.5" ,
2021-08-13 23:16:11 +02:00
"yargs" : "17.1.1"
2021-06-29 05:27:27 +02:00
} ,
"lint-staged" : {
"*.(js)" : "eslint --fix" ,
"*.(json|css)" : "prettier --write"
}
}