-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 718 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 718 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
{
"name": "nodejs-latest-linker",
"version": "1.9.0",
"description": "An application to create latest-X symlinks at https://nodejs.org/download/release/ after each new release",
"main": "latest-linker.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && tap --allow-incomplete-coverage test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nodejs/nodejs-latest-linker.git"
},
"author": "Rod <rod@vagg.org> (http://r.va.gg/)",
"license": "MIT",
"dependencies": {
"semver": "^7.3.2"
},
"bin": {
"nodejs-latest-linker": "latest-linker.js"
},
"preferGlobal": true,
"devDependencies": {
"standard": "^17.1.0",
"tap": "^18.4.0"
}
}