Files
l5rx-chiaroscuro/package.json
2020-12-09 19:10:12 +01:00

46 lines
1.3 KiB
JSON

{
"name": "l5r5e",
"version": "1.0.0",
"description": "This is a game system for Legend of the Five Rings (5th edition) by Edge Studio",
"main": "index.js",
"scripts": {
"compile": "gulp css",
"watch": "gulp",
"prettier": "prettier --quote-props=preserve --print-width=5000 --write"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/teaml5r/l5r5e.git"
},
"author": "Team L5r",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/teaml5r/l5r5e/issues"
},
"homepage": "https://gitlab.com/teaml5r/l5r5e#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"browser-sync": "^2.26.13",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"foundry-pc-types": "gitlab:foundry-projects/foundry-pc/foundry-pc-types",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-sass": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.json": "prettier --write",
"*.scss": "prettier --write"
}
}