🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@nodevu/core

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nodevu/core - npm Package Compare versions

Comparing version
0.0.4
to
0.1.0
+8
-0
index.js

@@ -48,2 +48,10 @@ const { fetch: defaultFetch } = require('undici')

data[name].releases[`v${versionSemver.version}`].releaseDate = versions[version].date ?? undefined
const modules = {
version: versions[version].modules ?? undefined
}
data[name].releases[`v${versionSemver.version}`].modules = modules
// define the dependencies object

@@ -50,0 +58,0 @@ data[name].releases[`v${versionSemver.version}`].dependencies = {}

+11
-9
{
"name": "@nodevu/core",
"version": "0.0.4",
"version": "0.1.0",
"description": "nodevu core API: comprehensive node.js version tooling",

@@ -11,5 +11,7 @@ "main": "index.js",

"test:update": "npm run test:update:static && npm run test:update:now",
"test:update:static": "node ./test/util/updateStaticData.js",
"test:update:now": "node ./test/util/updateStaticNow.js",
"coverage": "nyc node--test"
"test:update:static": "node ./util/dev/updateStaticData.js",
"test:update:now": "node ./util/dev/updateStaticNow.js",
"coverage": "nyc node--test",
"updates:check": "npx npm-check-updates",
"updates:update": "npx npm-check-updates -u"
},

@@ -23,6 +25,6 @@ "author": "Tierney Cyren <hello@bnb.im> (https://bnb.im/)",

"dependencies": {
"@nodevu/parsefiles": "^0.0.2",
"luxon": "^3.0.3",
"semver": "^7.3.7",
"undici": "^5.10.0"
"@nodevu/parsefiles": "^0.0.3",
"luxon": "^3.3.0",
"semver": "^7.5.1",
"undici": "^5.22.1"
},

@@ -32,4 +34,4 @@ "devDependencies": {

"standard": "^17.0.0",
"test": "^3.2.1"
"test": "^3.3.0"
}
}

@@ -42,2 +42,5 @@ # @nodevu/core

- `line` (`String`) - the "name" of the release line.
- `releaseDate` (`String`) - the version's release date.
- `modules` (`Object`)
- `version` (`String`) - the ABI (Application Binary Interface) version number of Node.js, used to determine which version of Node.js compiled C++ add-on binaries can be loaded in to without needing to be re-compiled.
- `dependencies` (`Object`) - the bundled dependencies in this version of Node.js:

@@ -44,0 +47,0 @@ - `npm` (`String`) - version of the bundled npm.