node-install-release 0.2.5 → 0.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- var install = require('./lib/install');
1
+ var install = require('./install');
2
2
 
3
3
  function installRelease(versionDetails, dest, options, callback) {
4
4
  if (typeof options === 'function') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-install-release",
3
- "version": "0.2.5",
3
+ "version": "0.2.8",
4
4
  "description": "Cross-platform solution for installing releases of Node.js",
5
5
  "keywords": [
6
6
  "node",
@@ -16,34 +16,36 @@
16
16
  "url": "git@github.com:kmalakoff/node-install-release.git"
17
17
  },
18
18
  "license": "MIT",
19
- "main": "index.js",
19
+ "main": "lib/index.js",
20
20
  "bin": {
21
21
  "nir": "./bin/node-install-release.js"
22
22
  },
23
+ "files": [
24
+ "lib"
25
+ ],
23
26
  "scripts": {
24
27
  "format": "prettier --write .",
25
28
  "lint": "eslint .",
26
29
  "prepublishOnly": "dtd \"npm run lint\" \"depcheck\"",
27
- "test": "mocha-compat test/spec/**/*.test.js --no-timeouts",
28
- "test:engines": "nvu engines npm test"
30
+ "test": "mocha-compat test/spec/**/*.test.js --no-timeouts"
29
31
  },
30
32
  "dependencies": {
31
33
  "arch": "^2.2.0",
32
- "cross-spawn-cb": "^0.5.5",
34
+ "cross-spawn-cb": "^0.5.12",
33
35
  "end-with": "^1.0.2",
34
36
  "exit": "^0.1.2",
35
- "fast-extract": "^0.3.1",
37
+ "fast-extract": "^0.3.3",
36
38
  "fs-access-compat": "^1.0.2",
37
- "get-remote": "^0.6.2",
39
+ "get-remote": "^0.6.3",
38
40
  "getopts-compat": "^2.2.5",
39
41
  "isarray": "^2.0.5",
42
+ "just-extend": "^6.0.1",
40
43
  "lodash.find": "^4.6.0",
41
44
  "lodash.keys": "^4.2.0",
42
45
  "match-semver": "^0.1.0",
43
46
  "mkpath": "^1.0.0",
44
- "node-filename-to-dist-paths": "^0.1.7",
45
- "node-resolve-versions": "^0.2.2",
46
- "just-extend": "^6.0.1",
47
+ "node-filename-to-dist-paths": "^0.1.9",
48
+ "node-resolve-versions": "^0.2.5",
47
49
  "osenv": "^0.1.5",
48
50
  "pump": "^3.0.0",
49
51
  "queue-cb": "^1.1.6",
@@ -51,22 +53,19 @@
51
53
  "single-line-log2": "^1.1.3"
52
54
  },
53
55
  "devDependencies": {
54
- "@typescript-eslint/parser": "^5.30.0",
56
+ "@typescript-eslint/parser": "^5.30.5",
55
57
  "cr": "^0.1.0",
56
58
  "depcheck": "^1.4.3",
57
- "dis-dat": "^0.1.5",
58
- "eslint": "^6.8.0",
59
- "eslint-config-prettier": "^6.11.0",
60
- "eslint-config-standard": "^14.1.1",
61
- "eslint-plugin-import": "^2.22.0",
62
- "eslint-plugin-node": "^11.1.0",
63
- "eslint-plugin-promise": "^4.2.1",
64
- "eslint-plugin-standard": "^4.0.1",
59
+ "dis-dat": "^0.1.7",
60
+ "eslint": "^8.19.0",
61
+ "eslint-config-prettier": "^8.5.0",
62
+ "eslint-config-standard": "^17.0.0",
63
+ "eslint-plugin-import": "^2.26.0",
64
+ "eslint-plugin-promise": "^6.0.0",
65
65
  "fs-access-sync-compat": "^1.0.1",
66
66
  "is-version": "^0.2.0",
67
67
  "mocha-compat": "^3.5.5",
68
- "node-version-use": "^0.2.3",
69
- "node-version-utils": "^0.3.1",
68
+ "node-version-utils": "^0.4.1",
70
69
  "prettier": "^2.7.1"
71
70
  },
72
71
  "engines": {
@@ -1,11 +0,0 @@
1
- version: 2
2
- updates:
3
- - package-ecosystem: npm
4
- directory: '/'
5
- schedule:
6
- interval: daily
7
- - package-ecosystem: 'github-actions'
8
- directory: '/'
9
- schedule:
10
- # Check for updates to GitHub Actions every weekday
11
- interval: 'daily'
@@ -1,22 +0,0 @@
1
- name: CI
2
- on:
3
- - push
4
- - pull_request
5
- jobs:
6
- test:
7
- name: Node.js ${{ matrix.node-version }} ${{ matrix.os }}
8
- runs-on: ${{ matrix.os }}
9
- strategy:
10
- matrix:
11
- node: ['latest']
12
- os: [ubuntu-latest, windows-latest, macOS-latest]
13
- steps:
14
- - uses: actions/checkout@v2
15
- - uses: actions/setup-node@v2.4.1
16
- with:
17
- node-version: ${{ matrix.node-version }}
18
- - run: git config --global user.name "Github Actions"
19
- - run: git config --global user.email "actions@users.noreply.github.com"
20
- - run: npm ci
21
- - run: npm run lint
22
- - run: npm run test:engines