2021-06-29 05:27:27 +02:00
{
"private" : true ,
"name" : "darkness-dependent-vision" ,
"version" : "0.0.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." ,
2021-06-29 05:27:27 +02:00
"license" : "MIT" ,
"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" : {
"@typhonjs-fvtt/eslint-config-foundry.js" : "^0.8.0" ,
"chalk" : "^4.1.1" ,
"eslint" : "^7.29.0" ,
"eslint-config-prettier" : "^8.3.0" ,
"eslint-plugin-prettier" : "^3.4.0" ,
"fs-extra" : "^10.0.0" ,
"gulp" : "^4.0.2" ,
"husky" : "^6.0.0" ,
"lint-staged" : "^11.0.0" ,
"prettier" : "^2.3.2" ,
"rollup" : "^2.52.3" ,
"semver" : "^7.3.5" ,
"yargs" : "^17.0.1"
} ,
"lint-staged" : {
"*.(js)" : "eslint --fix" ,
"*.(json|css)" : "prettier --write"
}
}