-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.18 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.18 KB
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
{
"name": "@pkgjs/nv",
"version": "0.3.0",
"description": "A tool for resolving node versions from common aliases",
"author": "Wes Todd <wes@wesleytodd.com>",
"keywords": [
"alias",
"node",
"node versions",
"versions",
"lts",
"active",
"maintenance"
],
"license": "MIT",
"main": "index.js",
"exports": {
".": {
"require": "./index.js",
"import": "./.esm-wrapper.mjs"
},
"./": "./"
},
"repository": {
"type": "git",
"url": "https://github.com/pkgjs/nv.git"
},
"scripts": {
"test": "mocha && tsd",
"test:types": "tsd",
"lint": "standard",
"debug": "mocha --inspect --inspect-brk --timeout=0",
"prepublishOnly": "npm t",
"postpublish": "git push origin && git push origin --tags",
"prepack": "gen-esm-wrapper . ./.esm-wrapper.mjs",
"release": "npm t && standard-version && npm publish"
},
"dependencies": {
"got": "^11.8.6",
"semver": "^7.1.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"gen-esm-wrapper": "^1.1.0",
"mocha": "^9.2.2",
"standard": "^17.1.2",
"standard-version": "^9.3.2",
"tsd": "^0.27.0"
},
"bin": {
"nv": "./bin/nv"
}
}