SquadJS/package.json
pull[bot] 7c1c29a00f
[pull] master from Thomas-Smyth:master (#31)
* ESLint & README Generation

* SquadJS 2.0.2-beta1

* SquadJS v2.0.2-beta1

* Fix bug in seeding plugin

* try/catch axios request + set pulled flag

Wraps axios request with try/catch for cases where we do not get a response or get an error

sets `this.pulled` flag after receiving and parsing response

* ESLint & README Generation

* Intervalled Broadcasts on the line 47 causes a crash because of undefined. The code should have been this.options.broadcasts instead of this.broadcasts

* yarn build-all

* ESLint & README Generation

* prefer throwing error to catch

- rm try/catch
prefer to throw error on failure to fetch layer information as it is critical to the apps operation

+add log line to indicate a force update

+increase verboseness of already pulled log as it is not critical info

* Added toLowerCase to address case sensitive config

* ESLint & README Generation

* SquadJS v2.0.2 Release

Co-authored-by: Thomas Smyth <thomas.smyth3141@gmail.com>
Co-authored-by: SeanWalsh95 <SeanWalsh95@users.noreply.github.com>
Co-authored-by: Dusan Milutinovic <bgteam@live.com>
Co-authored-by: got2bhockey <you@example.com>
2021-02-26 02:50:43 +00:00

36 lines
1.0 KiB
JSON

{
"name": "SquadJS",
"version": "2.0.2",
"repository": "https://github.com/Thomas-Smyth/SquadJS.git",
"author": "Thomas Smyth <https://github.com/Thomas-Smyth>",
"license": "BSL-1.0",
"private": true,
"workspaces": [
"assets",
"core",
"squad-server"
],
"scripts": {
"lint": "eslint --fix . && prettier --write \"./**/*.js\"",
"build-config": "node squad-server/scripts/build-config-file.js",
"build-readme": "node squad-server/scripts/build-readme.js",
"build-all": "node squad-server/scripts/build-config-file.js && node squad-server/scripts/build-readme.js"
},
"type": "module",
"dependencies": {
"squad-server": "1.0.0"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
}
}