SquadJS/package.json

36 lines
1.0 KiB
JSON
Raw Normal View History

2020-05-15 12:42:39 -05:00
{
"name": "SquadJS",
2020-12-08 11:16:32 -06:00
"version": "2.0.0-beta1",
2020-05-15 12:42:39 -05:00
"repository": "https://github.com/Thomas-Smyth/SquadJS.git",
"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": {
"lint": "eslint --fix . && prettier --write \"./**/*.js\"",
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": {
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
2020-05-15 12:42:39 -05:00
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
2020-05-15 12:42:39 -05:00
}
}