SquadJS/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2020-05-15 12:42:39 -05:00
{
"name": "SquadJS",
"version": "4.0.0",
2022-04-15 07:15:21 -05:00
"repository": "https://github.com/Team-Silver-Sphere/SquadJS.git",
2020-05-15 12:42:39 -05:00
"author": "Thomas Smyth <https://github.com/Thomas-Smyth>",
2020-06-20 09:48:36 -05:00
"license": "BSL-1.0",
2020-05-15 12:42:39 -05:00
"private": true,
"workspaces": [
"assets",
2020-10-25 09:24:48 -05:00
"core",
2020-05-15 12:42:39 -05:00
"squad-server"
],
"scripts": {
2021-03-07 09:14:27 -06:00
"prepare": "husky install",
2020-05-15 12:42:39 -05:00
"lint": "eslint --fix . && prettier --write \"./**/*.js\"",
2021-03-07 09:14:27 -06:00
"lint-staged": "lint-staged",
2020-11-04 17:17:21 -06:00
"build-config": "node squad-server/scripts/build-config-file.js",
2020-10-05 13:00:25 -05:00
"build-readme": "node squad-server/scripts/build-readme.js",
2020-11-04 17:17:21 -06:00
"build-all": "node squad-server/scripts/build-config-file.js && node squad-server/scripts/build-readme.js"
2020-05-15 12:42:39 -05:00
},
"type": "module",
"dependencies": {
2020-10-05 12:52:01 -05:00
"squad-server": "1.0.0"
2020-05-15 12:42:39 -05:00
},
"devDependencies": {
2021-01-09 09:16:00 -06:00
"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",
2020-05-15 12:42:39 -05:00
"eslint-plugin-promise": "^4.2.1",
2021-01-09 09:16:00 -06:00
"eslint-plugin-standard": "^5.0.0",
2021-03-07 09:14:27 -06:00
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
2021-01-09 09:16:00 -06:00
"prettier": "^2.2.1"
2020-05-15 12:42:39 -05:00
}
}