node-lts-versions
Version:
Get the maintained LTS versions of Node.js
55 lines • 1.43 kB
JSON
{
"name": "node-lts-versions",
"version": "1.7.2",
"description": "Get the maintained LTS versions of Node.js",
"main": "index.js",
"files": [
"dist",
"main.js",
"action.yml"
],
"dependencies": {
"@actions/core": "^1.11.1",
"semver": "^7.7.1"
},
"devDependencies": {
"eslint": "9.25.1",
"mocha": "11.2.2",
"@haraka/eslint-config": "^2.0.2"
},
"scripts": {
"test": "npx mocha",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint --fix *.js test",
"build": "ncc build main.js --license licenses.txt",
"prettier": "npx prettier --ignore-path dist/index.js --check .",
"prettier:fix": "npx prettier --ignore-path dist/index.js --write .",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update",
"format": "npm run prettier:fix && npm run lint:fix"
},
"repository": {
"type": "git",
"url": "https://github.com/msimerson/node-lts-versions.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Node",
"LTS",
"Long Term Stable",
"list",
"tooling"
],
"author": "Matt Simerson <matt@tnpi.net>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/msimerson/node-lts-versions/issues"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"homepage": "https://github.com/msimerson/node-lts-versions"
}