Skip to content

Commit

Permalink
Lossy dependency version spec in package.json
Browse files Browse the repository at this point in the history
For a small project moving with slow pace this is a more
adequate choice. If a breakage is introduced, it will be
caught by tests.
  • Loading branch information
dotdoom committed Oct 22, 2023
1 parent 5579cd8 commit e6e56fc
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@
"author": "FutureWare LLC (https://futureware.dev)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@types/semver": "^7.5.0",
"boolean": "^3.2.0",
"semver": "^7.5.0"
"@actions/core": ">=1.9.1",
"@types/semver": ">=7.5.0",
"boolean": ">=3.2.0",
"semver": ">=7.5.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^20.1.3",
"@typescript-eslint/parser": "^5.59.5",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.40.0",
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^26.6.3",
"jest-circus": "^27.4.6",
"js-yaml": "^4.1.0",
"prettier": "2.8.8",
"ts-jest": "^26.5.6",
"typescript": "^4.9.5"
"@types/jest": ">=27.4.0",
"@types/node": ">=20.1.3",
"@typescript-eslint/parser": ">=5.59.5",
"@vercel/ncc": ">=0.36.1",
"eslint": ">=8.40.0",
"eslint-plugin-github": ">=4.7.0",
"eslint-plugin-jest": ">=27.2.1",
"jest": ">=26.6.3",
"jest-circus": ">=27.4.6",
"js-yaml": ">=4.1.0",
"prettier": ">=2.8.8",
"ts-jest": ">=26.5.6",
"typescript": ">=4.9.5"
}
}

0 comments on commit e6e56fc

Please sign in to comment.