node-version-utils 1.3.16 → 1.3.18
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.
package/dist/cjs/index.js
CHANGED
|
@@ -14,4 +14,4 @@ function _interop_require_default(obj) {
|
|
|
14
14
|
default: obj
|
|
15
15
|
};
|
|
16
16
|
}
|
|
17
|
-
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (
|
|
17
|
+
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
|
|
@@ -19,4 +19,4 @@ function startsCaseInsensitiveFn(string) {
|
|
|
19
19
|
return true;
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
|
-
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (
|
|
22
|
+
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
|
package/dist/cjs/spawnOptions.js
CHANGED
|
@@ -70,12 +70,17 @@ function _object_spread_props(target, source) {
|
|
|
70
70
|
}
|
|
71
71
|
return target;
|
|
72
72
|
}
|
|
73
|
+
function _type_of(obj) {
|
|
74
|
+
"@swc/helpers - typeof";
|
|
75
|
+
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
76
|
+
}
|
|
73
77
|
var isWindows = process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE);
|
|
74
78
|
var NODE = isWindows ? 'node.exe' : 'node';
|
|
75
79
|
var startsNPM = (0, _startsWithFnts.default)('npm_');
|
|
76
80
|
var startsPath = (0, _startsWithFnts.default)('path');
|
|
77
81
|
function spawnOptions(installPath) {
|
|
78
82
|
var options = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
83
|
+
if (typeof installPath !== 'string') throw new TypeError("node-version-utils: installPath must be a string, got ".concat(typeof installPath === "undefined" ? "undefined" : _type_of(installPath)));
|
|
79
84
|
// Resolve symlinks to get real path (fixes nvm-windows symlink issues where
|
|
80
85
|
// C:\nvm4w\nodejs points to the active Node version via symlink)
|
|
81
86
|
try {
|
|
@@ -110,4 +115,4 @@ function spawnOptions(installPath) {
|
|
|
110
115
|
env: env
|
|
111
116
|
});
|
|
112
117
|
}
|
|
113
|
-
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (
|
|
118
|
+
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/kevin/Dev/OpenSource/node-version/node-version-utils/src/spawnOptions.ts"],"sourcesContent":["import pathKey from 'env-path-key';\nimport fs from 'fs';\nimport path from 'path';\nimport prepend from 'path-string-prepend';\nimport startsWithFn from './lib/startsWithFn.ts';\n\nconst isWindows = process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE);\nconst NODE = isWindows ? 'node.exe' : 'node';\n\nconst startsNPM = startsWithFn('npm_');\nconst startsPath = startsWithFn('path');\n\nimport type { ProcessEnv, SpawnOptions } from './types.ts';\n\nexport default function spawnOptions(installPath: string, options: SpawnOptions = {}): SpawnOptions {\n // Resolve symlinks to get real path (fixes nvm-windows symlink issues where\n // C:\\nvm4w\\nodejs points to the active Node version via symlink)\n try {\n installPath = fs.realpathSync(installPath);\n } catch (_e) {\n // Keep original path if resolution fails\n }\n\n const PATH_KEY = pathKey();\n const processEnv = options.env || process.env;\n const bin = isWindows ? installPath : path.join(installPath, 'bin');\n const env = {} as ProcessEnv;\n env.npm_node_execpath = path.join(bin, NODE);\n env.npm_config_prefix = installPath;\n\n // copy the environment not for npm and skip case-insesitive additional paths\n for (const key in processEnv) {\n // skip npm_ variants and non-matching path\n if (key.length > 4 && startsNPM(key)) continue;\n if (key.length === 4 && startsPath(key) && key !== PATH_KEY) continue;\n env[key] = processEnv[key];\n }\n\n // override node\n if (env.NODE !== undefined) env.NODE = env.npm_node_execpath;\n if (env.NODE_EXE !== undefined) env.NODE_EXE = env.npm_node_execpath;\n\n // put the path to node and npm at the front\n if (options.env && !options.env[PATH_KEY]) {\n throw new Error(`node-version-utils: options.env missing required ${PATH_KEY}`);\n }\n const basePath = env[PATH_KEY] || process.env[PATH_KEY] || '';\n env[PATH_KEY] = prepend(basePath, bin) as string;\n return { ...options, cwd: process.cwd(), env } as SpawnOptions;\n}\n"],"names":["spawnOptions","isWindows","process","platform","test","env","OSTYPE","NODE","startsNPM","startsWithFn","startsPath","installPath","options","fs","realpathSync","_e","PATH_KEY","pathKey","processEnv","bin","path","join","npm_node_execpath","npm_config_prefix","key","length","undefined","NODE_EXE","Error","basePath","prepend","cwd"],"mappings":";;;;+BAcA;;;eAAwBA;;;iEAdJ;yDACL;2DACE;wEACG;qEACK
|
|
1
|
+
{"version":3,"sources":["/Users/kevin/Dev/OpenSource/node-version/node-version-utils/src/spawnOptions.ts"],"sourcesContent":["import pathKey from 'env-path-key';\nimport fs from 'fs';\nimport path from 'path';\nimport prepend from 'path-string-prepend';\nimport startsWithFn from './lib/startsWithFn.ts';\n\nconst isWindows = process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE);\nconst NODE = isWindows ? 'node.exe' : 'node';\n\nconst startsNPM = startsWithFn('npm_');\nconst startsPath = startsWithFn('path');\n\nimport type { ProcessEnv, SpawnOptions } from './types.ts';\n\nexport default function spawnOptions(installPath: string, options: SpawnOptions = {}): SpawnOptions {\n if (typeof installPath !== 'string') throw new TypeError(`node-version-utils: installPath must be a string, got ${typeof installPath}`);\n // Resolve symlinks to get real path (fixes nvm-windows symlink issues where\n // C:\\nvm4w\\nodejs points to the active Node version via symlink)\n try {\n installPath = fs.realpathSync(installPath);\n } catch (_e) {\n // Keep original path if resolution fails\n }\n\n const PATH_KEY = pathKey();\n const processEnv = options.env || process.env;\n const bin = isWindows ? installPath : path.join(installPath, 'bin');\n const env = {} as ProcessEnv;\n env.npm_node_execpath = path.join(bin, NODE);\n env.npm_config_prefix = installPath;\n\n // copy the environment not for npm and skip case-insesitive additional paths\n for (const key in processEnv) {\n // skip npm_ variants and non-matching path\n if (key.length > 4 && startsNPM(key)) continue;\n if (key.length === 4 && startsPath(key) && key !== PATH_KEY) continue;\n env[key] = processEnv[key];\n }\n\n // override node\n if (env.NODE !== undefined) env.NODE = env.npm_node_execpath;\n if (env.NODE_EXE !== undefined) env.NODE_EXE = env.npm_node_execpath;\n\n // put the path to node and npm at the front\n if (options.env && !options.env[PATH_KEY]) {\n throw new Error(`node-version-utils: options.env missing required ${PATH_KEY}`);\n }\n const basePath = env[PATH_KEY] || process.env[PATH_KEY] || '';\n env[PATH_KEY] = prepend(basePath, bin) as string;\n return { ...options, cwd: process.cwd(), env } as SpawnOptions;\n}\n"],"names":["spawnOptions","isWindows","process","platform","test","env","OSTYPE","NODE","startsNPM","startsWithFn","startsPath","installPath","options","TypeError","fs","realpathSync","_e","PATH_KEY","pathKey","processEnv","bin","path","join","npm_node_execpath","npm_config_prefix","key","length","undefined","NODE_EXE","Error","basePath","prepend","cwd"],"mappings":";;;;+BAcA;;;eAAwBA;;;iEAdJ;yDACL;2DACE;wEACG;qEACK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEzB,IAAMC,YAAYC,QAAQC,QAAQ,KAAK,WAAW,kBAAkBC,IAAI,CAACF,QAAQG,GAAG,CAACC,MAAM;AAC3F,IAAMC,OAAON,YAAY,aAAa;AAEtC,IAAMO,YAAYC,IAAAA,uBAAY,EAAC;AAC/B,IAAMC,aAAaD,IAAAA,uBAAY,EAAC;AAIjB,SAAST,aAAaW,WAAmB;QAAEC,UAAAA,iEAAwB,CAAC;IACjF,IAAI,OAAOD,gBAAgB,UAAU,MAAM,IAAIE,UAAU,AAAC,yDAA2E,OAAnB,OAAOF,4CAAP,SAAOA;IACzH,4EAA4E;IAC5E,iEAAiE;IACjE,IAAI;QACFA,cAAcG,WAAE,CAACC,YAAY,CAACJ;IAChC,EAAE,OAAOK,IAAI;IACX,yCAAyC;IAC3C;IAEA,IAAMC,WAAWC,IAAAA,mBAAO;IACxB,IAAMC,aAAaP,QAAQP,GAAG,IAAIH,QAAQG,GAAG;IAC7C,IAAMe,MAAMnB,YAAYU,cAAcU,aAAI,CAACC,IAAI,CAACX,aAAa;IAC7D,IAAMN,MAAM,CAAC;IACbA,IAAIkB,iBAAiB,GAAGF,aAAI,CAACC,IAAI,CAACF,KAAKb;IACvCF,IAAImB,iBAAiB,GAAGb;IAExB,6EAA6E;IAC7E,IAAK,IAAMc,OAAON,WAAY;QAC5B,2CAA2C;QAC3C,IAAIM,IAAIC,MAAM,GAAG,KAAKlB,UAAUiB,MAAM;QACtC,IAAIA,IAAIC,MAAM,KAAK,KAAKhB,WAAWe,QAAQA,QAAQR,UAAU;QAC7DZ,GAAG,CAACoB,IAAI,GAAGN,UAAU,CAACM,IAAI;IAC5B;IAEA,gBAAgB;IAChB,IAAIpB,IAAIE,IAAI,KAAKoB,WAAWtB,IAAIE,IAAI,GAAGF,IAAIkB,iBAAiB;IAC5D,IAAIlB,IAAIuB,QAAQ,KAAKD,WAAWtB,IAAIuB,QAAQ,GAAGvB,IAAIkB,iBAAiB;IAEpE,4CAA4C;IAC5C,IAAIX,QAAQP,GAAG,IAAI,CAACO,QAAQP,GAAG,CAACY,SAAS,EAAE;QACzC,MAAM,IAAIY,MAAM,AAAC,oDAA4D,OAATZ;IACtE;IACA,IAAMa,WAAWzB,GAAG,CAACY,SAAS,IAAIf,QAAQG,GAAG,CAACY,SAAS,IAAI;IAC3DZ,GAAG,CAACY,SAAS,GAAGc,IAAAA,0BAAO,EAACD,UAAUV;IAClC,OAAO,wCAAKR;QAASoB,KAAK9B,QAAQ8B,GAAG;QAAI3B,KAAAA;;AAC3C"}
|
package/dist/cjs/types.js
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", {
|
|
3
3
|
value: true
|
|
4
4
|
});
|
|
5
|
-
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (
|
|
5
|
+
/* CJS INTEROP */ if (exports.__esModule && exports.default) { try { Object.defineProperty(exports.default, '__esModule', { value: true }); for (var key in exports) { exports.default[key] = exports[key]; } } catch (_) {}; module.exports = exports.default; }
|
package/dist/esm/spawnOptions.js
CHANGED
|
@@ -8,6 +8,7 @@ const NODE = isWindows ? 'node.exe' : 'node';
|
|
|
8
8
|
const startsNPM = startsWithFn('npm_');
|
|
9
9
|
const startsPath = startsWithFn('path');
|
|
10
10
|
export default function spawnOptions(installPath, options = {}) {
|
|
11
|
+
if (typeof installPath !== 'string') throw new TypeError(`node-version-utils: installPath must be a string, got ${typeof installPath}`);
|
|
11
12
|
// Resolve symlinks to get real path (fixes nvm-windows symlink issues where
|
|
12
13
|
// C:\nvm4w\nodejs points to the active Node version via symlink)
|
|
13
14
|
try {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/Users/kevin/Dev/OpenSource/node-version/node-version-utils/src/spawnOptions.ts"],"sourcesContent":["import pathKey from 'env-path-key';\nimport fs from 'fs';\nimport path from 'path';\nimport prepend from 'path-string-prepend';\nimport startsWithFn from './lib/startsWithFn.ts';\n\nconst isWindows = process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE);\nconst NODE = isWindows ? 'node.exe' : 'node';\n\nconst startsNPM = startsWithFn('npm_');\nconst startsPath = startsWithFn('path');\n\nimport type { ProcessEnv, SpawnOptions } from './types.ts';\n\nexport default function spawnOptions(installPath: string, options: SpawnOptions = {}): SpawnOptions {\n // Resolve symlinks to get real path (fixes nvm-windows symlink issues where\n // C:\\nvm4w\\nodejs points to the active Node version via symlink)\n try {\n installPath = fs.realpathSync(installPath);\n } catch (_e) {\n // Keep original path if resolution fails\n }\n\n const PATH_KEY = pathKey();\n const processEnv = options.env || process.env;\n const bin = isWindows ? installPath : path.join(installPath, 'bin');\n const env = {} as ProcessEnv;\n env.npm_node_execpath = path.join(bin, NODE);\n env.npm_config_prefix = installPath;\n\n // copy the environment not for npm and skip case-insesitive additional paths\n for (const key in processEnv) {\n // skip npm_ variants and non-matching path\n if (key.length > 4 && startsNPM(key)) continue;\n if (key.length === 4 && startsPath(key) && key !== PATH_KEY) continue;\n env[key] = processEnv[key];\n }\n\n // override node\n if (env.NODE !== undefined) env.NODE = env.npm_node_execpath;\n if (env.NODE_EXE !== undefined) env.NODE_EXE = env.npm_node_execpath;\n\n // put the path to node and npm at the front\n if (options.env && !options.env[PATH_KEY]) {\n throw new Error(`node-version-utils: options.env missing required ${PATH_KEY}`);\n }\n const basePath = env[PATH_KEY] || process.env[PATH_KEY] || '';\n env[PATH_KEY] = prepend(basePath, bin) as string;\n return { ...options, cwd: process.cwd(), env } as SpawnOptions;\n}\n"],"names":["pathKey","fs","path","prepend","startsWithFn","isWindows","process","platform","test","env","OSTYPE","NODE","startsNPM","startsPath","spawnOptions","installPath","options","realpathSync","_e","PATH_KEY","processEnv","bin","join","npm_node_execpath","npm_config_prefix","key","length","undefined","NODE_EXE","Error","basePath","cwd"],"mappings":"AAAA,OAAOA,aAAa,eAAe;AACnC,OAAOC,QAAQ,KAAK;AACpB,OAAOC,UAAU,OAAO;AACxB,OAAOC,aAAa,sBAAsB;AAC1C,OAAOC,kBAAkB,wBAAwB;AAEjD,MAAMC,YAAYC,QAAQC,QAAQ,KAAK,WAAW,kBAAkBC,IAAI,CAACF,QAAQG,GAAG,CAACC,MAAM;AAC3F,MAAMC,OAAON,YAAY,aAAa;AAEtC,MAAMO,YAAYR,aAAa;AAC/B,MAAMS,aAAaT,aAAa;AAIhC,eAAe,SAASU,aAAaC,WAAmB,EAAEC,UAAwB,CAAC,CAAC;IAClF,4EAA4E;IAC5E,iEAAiE;IACjE,IAAI;
|
|
1
|
+
{"version":3,"sources":["/Users/kevin/Dev/OpenSource/node-version/node-version-utils/src/spawnOptions.ts"],"sourcesContent":["import pathKey from 'env-path-key';\nimport fs from 'fs';\nimport path from 'path';\nimport prepend from 'path-string-prepend';\nimport startsWithFn from './lib/startsWithFn.ts';\n\nconst isWindows = process.platform === 'win32' || /^(msys|cygwin)$/.test(process.env.OSTYPE);\nconst NODE = isWindows ? 'node.exe' : 'node';\n\nconst startsNPM = startsWithFn('npm_');\nconst startsPath = startsWithFn('path');\n\nimport type { ProcessEnv, SpawnOptions } from './types.ts';\n\nexport default function spawnOptions(installPath: string, options: SpawnOptions = {}): SpawnOptions {\n if (typeof installPath !== 'string') throw new TypeError(`node-version-utils: installPath must be a string, got ${typeof installPath}`);\n // Resolve symlinks to get real path (fixes nvm-windows symlink issues where\n // C:\\nvm4w\\nodejs points to the active Node version via symlink)\n try {\n installPath = fs.realpathSync(installPath);\n } catch (_e) {\n // Keep original path if resolution fails\n }\n\n const PATH_KEY = pathKey();\n const processEnv = options.env || process.env;\n const bin = isWindows ? installPath : path.join(installPath, 'bin');\n const env = {} as ProcessEnv;\n env.npm_node_execpath = path.join(bin, NODE);\n env.npm_config_prefix = installPath;\n\n // copy the environment not for npm and skip case-insesitive additional paths\n for (const key in processEnv) {\n // skip npm_ variants and non-matching path\n if (key.length > 4 && startsNPM(key)) continue;\n if (key.length === 4 && startsPath(key) && key !== PATH_KEY) continue;\n env[key] = processEnv[key];\n }\n\n // override node\n if (env.NODE !== undefined) env.NODE = env.npm_node_execpath;\n if (env.NODE_EXE !== undefined) env.NODE_EXE = env.npm_node_execpath;\n\n // put the path to node and npm at the front\n if (options.env && !options.env[PATH_KEY]) {\n throw new Error(`node-version-utils: options.env missing required ${PATH_KEY}`);\n }\n const basePath = env[PATH_KEY] || process.env[PATH_KEY] || '';\n env[PATH_KEY] = prepend(basePath, bin) as string;\n return { ...options, cwd: process.cwd(), env } as SpawnOptions;\n}\n"],"names":["pathKey","fs","path","prepend","startsWithFn","isWindows","process","platform","test","env","OSTYPE","NODE","startsNPM","startsPath","spawnOptions","installPath","options","TypeError","realpathSync","_e","PATH_KEY","processEnv","bin","join","npm_node_execpath","npm_config_prefix","key","length","undefined","NODE_EXE","Error","basePath","cwd"],"mappings":"AAAA,OAAOA,aAAa,eAAe;AACnC,OAAOC,QAAQ,KAAK;AACpB,OAAOC,UAAU,OAAO;AACxB,OAAOC,aAAa,sBAAsB;AAC1C,OAAOC,kBAAkB,wBAAwB;AAEjD,MAAMC,YAAYC,QAAQC,QAAQ,KAAK,WAAW,kBAAkBC,IAAI,CAACF,QAAQG,GAAG,CAACC,MAAM;AAC3F,MAAMC,OAAON,YAAY,aAAa;AAEtC,MAAMO,YAAYR,aAAa;AAC/B,MAAMS,aAAaT,aAAa;AAIhC,eAAe,SAASU,aAAaC,WAAmB,EAAEC,UAAwB,CAAC,CAAC;IAClF,IAAI,OAAOD,gBAAgB,UAAU,MAAM,IAAIE,UAAU,CAAC,sDAAsD,EAAE,OAAOF,aAAa;IACtI,4EAA4E;IAC5E,iEAAiE;IACjE,IAAI;QACFA,cAAcd,GAAGiB,YAAY,CAACH;IAChC,EAAE,OAAOI,IAAI;IACX,yCAAyC;IAC3C;IAEA,MAAMC,WAAWpB;IACjB,MAAMqB,aAAaL,QAAQP,GAAG,IAAIH,QAAQG,GAAG;IAC7C,MAAMa,MAAMjB,YAAYU,cAAcb,KAAKqB,IAAI,CAACR,aAAa;IAC7D,MAAMN,MAAM,CAAC;IACbA,IAAIe,iBAAiB,GAAGtB,KAAKqB,IAAI,CAACD,KAAKX;IACvCF,IAAIgB,iBAAiB,GAAGV;IAExB,6EAA6E;IAC7E,IAAK,MAAMW,OAAOL,WAAY;QAC5B,2CAA2C;QAC3C,IAAIK,IAAIC,MAAM,GAAG,KAAKf,UAAUc,MAAM;QACtC,IAAIA,IAAIC,MAAM,KAAK,KAAKd,WAAWa,QAAQA,QAAQN,UAAU;QAC7DX,GAAG,CAACiB,IAAI,GAAGL,UAAU,CAACK,IAAI;IAC5B;IAEA,gBAAgB;IAChB,IAAIjB,IAAIE,IAAI,KAAKiB,WAAWnB,IAAIE,IAAI,GAAGF,IAAIe,iBAAiB;IAC5D,IAAIf,IAAIoB,QAAQ,KAAKD,WAAWnB,IAAIoB,QAAQ,GAAGpB,IAAIe,iBAAiB;IAEpE,4CAA4C;IAC5C,IAAIR,QAAQP,GAAG,IAAI,CAACO,QAAQP,GAAG,CAACW,SAAS,EAAE;QACzC,MAAM,IAAIU,MAAM,CAAC,iDAAiD,EAAEV,UAAU;IAChF;IACA,MAAMW,WAAWtB,GAAG,CAACW,SAAS,IAAId,QAAQG,GAAG,CAACW,SAAS,IAAI;IAC3DX,GAAG,CAACW,SAAS,GAAGjB,QAAQ4B,UAAUT;IAClC,OAAO;QAAE,GAAGN,OAAO;QAAEgB,KAAK1B,QAAQ0B,GAAG;QAAIvB;IAAI;AAC/C"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-version-utils",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.18",
|
|
4
4
|
"description": "Utilities for running commands on a specific version of node by installed path",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"node",
|
|
@@ -42,21 +42,21 @@
|
|
|
42
42
|
"version": "tsds version"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"env-path-key": "^1.
|
|
46
|
-
"path-string-prepend": "^1.
|
|
45
|
+
"env-path-key": "^1.0.0",
|
|
46
|
+
"path-string-prepend": "^1.0.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@types/mocha": "
|
|
50
|
-
"@types/node": "
|
|
49
|
+
"@types/mocha": "*",
|
|
50
|
+
"@types/node": "*",
|
|
51
51
|
"cr": "^0.1.0",
|
|
52
|
-
"cross-spawn-cb": "^
|
|
53
|
-
"fs-remove-compat": "^0.
|
|
54
|
-
"is-version": "^1.0.
|
|
55
|
-
"node-install-release": "^1.
|
|
56
|
-
"node-resolve-versions": "^1.
|
|
57
|
-
"node-version-use": "
|
|
58
|
-
"ts-dev-stack": "
|
|
59
|
-
"tsds-config": "
|
|
52
|
+
"cross-spawn-cb": "^3.0.0",
|
|
53
|
+
"fs-remove-compat": "^1.0.0",
|
|
54
|
+
"is-version": "^1.0.9",
|
|
55
|
+
"node-install-release": "^1.7.5",
|
|
56
|
+
"node-resolve-versions": "^1.0.0",
|
|
57
|
+
"node-version-use": "*",
|
|
58
|
+
"ts-dev-stack": "*",
|
|
59
|
+
"tsds-config": "*"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=0.8"
|