starting dices implementation
This commit is contained in:
68
package.json
68
package.json
@@ -1,27 +1,45 @@
|
||||
{
|
||||
"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 watch",
|
||||
"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": {
|
||||
"browser-sync": "^2.26.13",
|
||||
"gulp": "^4.0.2",
|
||||
"gulp-autoprefixer": "^7.0.1",
|
||||
"gulp-sass": "^4.1.0"
|
||||
}
|
||||
"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 watch",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user