-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 1.87 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "get-node",
"version": "15.0.1",
"type": "module",
"exports": {
"types": "./build/src/main.d.ts",
"default": "./build/src/main.js"
},
"main": "./build/src/main.js",
"types": "./build/src/main.d.ts",
"files": [
"build/src/**/*.{js,json,d.ts}",
"!build/src/**/*.test.js",
"!build/src/{helpers,fixtures}"
],
"sideEffects": false,
"scripts": {
"test": "gulp test"
},
"description": "Download a specific version of Node.js",
"keywords": [
"nodejs",
"node",
"download",
"nvm",
"npx",
"versions",
"versioning",
"exec",
"shell",
"terminal",
"command-line",
"cli",
"dependency-management",
"es6",
"javascript",
"typescript",
"library",
"npmjs",
"operating-system",
"package-manager"
],
"license": "Apache-2.0",
"homepage": "https://www.github.com/ehmicky/get-node",
"repository": {
"type": "git",
"url": "git+https://github.com/ehmicky/get-node.git"
},
"bugs": {
"url": "https://github.com/ehmicky/get-node/issues"
},
"author": "ehmicky <ehmicky@gmail.com> (https://github.com/ehmicky)",
"directories": {
"lib": "src"
},
"dependencies": {
"execa": "^9.5.1",
"fetch-node-website": "^9.0.0",
"global-cache-dir": "^6.0.0",
"is-plain-obj": "^4.1.0",
"jszip": "^3.10.1",
"memoize": "^10.0.0",
"move-file": "^3.0.0",
"node-version-alias": "^5.0.0",
"path-exists": "^5.0.0",
"path-key": "^4.0.0",
"preferred-node-version": "^5.0.0",
"semver": "^7.6.3",
"tar-fs": "^3.0.6",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@ehmicky/dev-tasks": "^3.0.27",
"@ehmicky/eslint-config": "^20.0.19",
"@ehmicky/prettier-config": "^1.0.4",
"@types/node": "^22.8.1",
"is-ci": "^3.0.1",
"sinon": "^19.0.2",
"test-each": "^7.0.0"
},
"engines": {
"node": ">=18.18.0"
}
}