Skip to content

Commit

Permalink
chore: update dependencies and tooling in all packages (#67)
Browse files Browse the repository at this point in the history
Signed-off-by: Tierney Cyren <hello@bnb.im>
  • Loading branch information
bnb authored Nov 6, 2024
1 parent 8f95d6a commit 190f935
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 43 deletions.
9 changes: 6 additions & 3 deletions aliases/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
"type": "git",
"url": "git+https://github.com/cutenode/nodevu.git"
},
"keywords": ["node.js", "version"],
"keywords": [
"node.js",
"version"
],
"author": "Tierney Cyren <hello@bnb.im> (https://bnb.im/)",
"license": "MIT",
"bugs": {
Expand All @@ -16,12 +19,12 @@
"homepage": "https://github.com/cutenode/nodevu#readme",
"scripts": {
"lint": "biome check ./",
"lint:apply": "biome check ./ --apply",
"lint:write": "biome check ./ --write",
"test": "",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
"devDependencies": {
"@biomejs/biome": "1.6.1"
"@biomejs/biome": "1.9.4"
}
}
7 changes: 3 additions & 4 deletions core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"scripts": {
"lint": "biome check ./",
"lint:write": "biome check ./ --write",
"test": "node--test",
"test": "node --test",
"test:update": "npm run test:update:static && npm run test:update:now",
"test:update:static": "node ./util/dev/updateStaticData.js",
"test:update:now": "node ./util/dev/updateStaticNow.js",
"coverage": "nyc node--test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
Expand All @@ -27,8 +27,7 @@
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"nyc": "^17.1.0",
"test": "^3.3.0",
"c8": "^10.1.2",
"undici": "^6.20.1"
}
}
9 changes: 4 additions & 5 deletions earliest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"files": ["index.js", "LICENSE"],
"scripts": {
"lint": "biome check ./",
"lint:apply": "biome check ./ --apply",
"test": "node--test",
"coverage": "nyc node--test",
"lint:write": "biome check ./ --write",
"test": "node --test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
Expand All @@ -28,7 +28,6 @@
},
"devDependencies": {
"@biomejs/biome": "1.6.1",
"nyc": "^15.1.0",
"test": "^3.3.0"
"c8": "^10.1.2"
}
}
23 changes: 15 additions & 8 deletions parsefiles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,26 @@
"main": "index.js",
"scripts": {
"lint": "biome check ./",
"lint:apply": "biome check ./ --apply",
"test": "node--test",
"coverage": "nyc mocha",
"lint:write": "biome check ./ --write",
"test": "node --test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
"keywords": ["node.js", "versions", "parse", "files"],
"files": ["index.js", "LICENSE"],
"keywords": [
"node.js",
"versions",
"parse",
"files"
],
"files": [
"index.js",
"LICENSE"
],
"author": "Tierney Cyren <hello@bnb.im>",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.6.1",
"nyc": "^15.1.0",
"test": "^3.3.0"
"@biomejs/biome": "1.9.4",
"c8": "^10.1.2"
}
}
18 changes: 10 additions & 8 deletions ranges/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
"version": "0.1.0",
"description": "support node's unofficial alias namespace",
"main": "index.js",
"files": ["index.js", "LICENSE"],
"files": [
"index.js",
"LICENSE"
],
"scripts": {
"lint": "biome check ./",
"lint:apply": "biome check ./ --apply",
"test": "node--test",
"coverage": "nyc node--test",
"lint:write": "biome check ./ --write",
"test": "node --test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
Expand All @@ -24,11 +27,10 @@
"homepage": "https://github.com/cutenode/nodevu#readme",
"dependencies": {
"@nodevu/aliases": "^0.0.2",
"@nodevu/core": "^0.0.4"
"@nodevu/core": "^0.2.0"
},
"devDependencies": {
"@biomejs/biome": "1.6.1",
"nyc": "^15.1.0",
"test": "^3.3.0"
"@biomejs/biome": "1.9.4",
"c8": "^10.1.2"
}
}
19 changes: 13 additions & 6 deletions static/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,25 @@
"lint": "biome check ./",
"lint:write": "biome check ./ --write",
"prepublish": "npm run build",
"test": "node--test",
"coverage": "nyc node--test",
"test": "node --test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cutenode/nodevu.git"
},
"keywords": ["node.js", "version", "versions"],
"files": ["/data", "index.js", "LICENSE"],
"keywords": [
"node.js",
"version",
"versions"
],
"files": [
"/data",
"index.js",
"LICENSE"
],
"author": "Tierney Cyren <hello@bnb.im>",
"license": "MIT",
"bugs": {
Expand All @@ -31,7 +39,6 @@
"homepage": "https://github.com/cutenode/nodevu#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"nyc": "^17.1.0",
"test": "^3.3.0"
"c8": "^10.1.2"
}
}
22 changes: 13 additions & 9 deletions translate/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@
"name": "@nodevu/translate",
"version": "0.0.1",
"description": "a translation layer between the nodevu naming mechanism and the Node.js supported mechanism. Neceessary for legacy interop.",
"keywords": ["nodevu", "node", "nodejs", "versions", "supported"],
"keywords": [
"nodevu",
"node",
"nodejs",
"versions",
"supported"
],
"homepage": "https://github.com/cutenode/nodevu#readme",
"bugs": {
"url": "https://github.com/cutenode/nodevu/issues"
Expand All @@ -15,21 +21,19 @@
"author": "Tierney Cyren",
"main": "index.js",
"scripts": {
"coverage": "nyc node--test",
"lint": "biome check ./",
"lint:apply": "biome check ./ --apply",
"lint:packagejson": "npx sort-package-json",
"test": "node--test",
"lint:write": "biome check ./ --write",
"test": "node --test",
"coverage": "c8 node --test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},
"devDependencies": {
"@biomejs/biome": "1.6.1",
"@biomejs/biome": "1.9.4",
"@nodevu/ranges": "^0.1.0",
"nyc": "^15.1.0",
"test": "^3.3.0"
"c8": "^10.1.2"
},
"engines": {
"node": ">=16.0.0"
"node": ">=18.0.0"
}
}

0 comments on commit 190f935

Please sign in to comment.