Skip to content

Commit

Permalink
lint: sort package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
qballer committed Oct 11, 2024
1 parent dc6a3d4 commit e914361
Showing 1 changed file with 31 additions and 32 deletions.
63 changes: 31 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,46 @@
{
"name": "suites-monorepo",
"private": true,
"version": "0.0.0",
"license": "MIT",
"repository": {
"type": "git",
"private": true,
"homepage": "https://suites.dev",
"bugs": {
"url": "https://github.com/suites-dev/suites.git"
},
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
},
"bugs": {
"repository": {
"type": "git",
"url": "https://github.com/suites-dev/suites.git"
},
"homepage": "https://suites.dev",
"license": "MIT",
"contributors": [
{
"name": "Omer Morad",
"email": "[email protected]"
}
],
"workspaces": [
"packages/*",
"packages/di/*",
"packages/doubles/*",
"packages/types/*"
],
"scripts": {
"build": "yarn lerna run build",
"test": "yarn lerna exec yarn test",
"lint": "yarn lerna run lint --parallel",
"prepare": "husky"
"prepare": "husky",
"test": "yarn lerna exec yarn test"
},
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"jest-junit": {
"ancestorSeparator": "",
"classNameTemplate": "{classname}",
"outputDirectory": "test-reports",
"suiteNameTemplate": "{filepath}",
"titleTemplate": "{title}",
"uniqueOutputName": "true"
},
"dependencies": {
"@babel/traverse": "7.23.2",
Expand Down Expand Up @@ -53,33 +69,16 @@
"madge": "^7.0.0",
"micromatch": "4.0.6",
"prettier": "^3.2.5",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.5",
"rxjs": "^7.8.1",
"sinon": "^16.1.0",
"tar": "6.2.1",
"ts-jest": "^29.1.3",
"ts-node": "^10.9.1",
"typescript": "~5.2.2",
"reflect-metadata": "^0.1.13"
"typescript": "~5.2.2"
},

"workspaces": [
"packages/*",
"packages/di/*",
"packages/doubles/*",
"packages/types/*"
],
"lint-staged": {
"*.ts": [
"eslint --ext .ts --fix"
]
},
"jest-junit": {
"outputDirectory": "test-reports",
"ancestorSeparator": "",
"uniqueOutputName": "true",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
"engines": {
"node": "^16.10.0 || ^18.12.0 || >=20.0.0"
}
}

0 comments on commit e914361

Please sign in to comment.