Files
l5rx-chiaroscuro/package.json
Mandar 10956e6677 Update style Npc Sheet v2 + update Charac + delete old ui and add svg
Update Npc sheet style for v1.0
Update Character sheet rings / social / attribute
Delete old l5r-ui folder
Add asset svg
2020-12-19 04:44:12 +01:00

47 lines
1.4 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",
"node-sass": "^4.14.1",
"prettier": "^2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.json": "prettier --write",
"*.scss": "prettier --write"
}
}