-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.14 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
{
"name": "@pkgjs/nv",
"version": "0.2.2",
"description": "A tool for resolving node versions from common aliases",
"author": "Wes Todd <[email protected]>",
"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": "standard && mocha && tsd",
"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.3",
"semver": "^7.1.1",
"yargs": "^16.2.0"
},
"devDependencies": {
"gen-esm-wrapper": "^1.1.0",
"mocha": "^9.1.3",
"standard": "^16.0.4",
"standard-version": "^9.3.2",
"tsd": "^0.19.0"
},
"bin": {
"nv": "./bin/nv"
}
}