-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 881 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 881 Bytes
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
{
"name": "@darkobits/node-versions",
"version": "1.0.7",
"description": "Get the 'latest' and 'LTS' versions of Node JS.",
"license": "WTFPL",
"author": "darkobits",
"repository": {
"type": "git",
"url": "git+https://github.com/darkobits/node-versions.git"
},
"keywords": [
"check",
"node",
"version",
"versions",
"latest",
"lts",
"release",
"releases"
],
"engines": {
"node": ">= 12.0.0"
},
"files": [
"dist"
],
"bin": {
"node-versions": "dist/bin/cli.js"
},
"main": "dist/node-versions.js",
"scripts": {
"prepare": "nr prepare"
},
"dependencies": {
"@darkobits/saffron": "^0.4.2",
"axios": "^0.21.1",
"semver": "^7.3.4"
},
"devDependencies": {
"@darkobits/ts": "^0.7.11",
"@types/moxios": "^0.4.12",
"@types/semver": "^7.3.8",
"moxios": "^0.4.0"
}
}