dotfiles/vscode/.vscode/extensions/matangover.mypy-0.3.1/node_modules/node-version/package.json
Errol Sancaktar 5f8db31398 alacritty
2024-07-15 17:06:13 -06:00

52 lines
1.3 KiB
JSON

{
"name": "node-version",
"version": "1.2.0",
"description": "Get Node current version",
"homepage": "https://github.com/srod/node-version",
"author": {
"name": "Rodolphe Stoclin",
"email": "rodolphe@2clics.net",
"url": "http://2clics.net"
},
"license": "MIT",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/srod/node-version.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"node",
"version"
],
"scripts": {
"eslint": "eslint index.js || true",
"pretest": "npm run eslint",
"test": "jest",
"release-patch": "npm version patch -m 'Bump %s' && git push --tags origin HEAD:master",
"release-minor": "npm version minor -m 'Bump %s' && git push --tags origin HEAD:master",
"release-major": "npm version major -m 'Bump %s' && git push --tags origin HEAD:master",
"publish-latest": "npm publish",
"publish-beta": "npm publish --tag beta"
},
"dependencies": {},
"devDependencies": {
"codecov": "3.0.2",
"eslint": "4.19.1",
"jest": "23.1.0"
},
"jest": {
"notify": true,
"verbose": true,
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"testPathIgnorePatterns": [
"/node_modules/",
".history"
]
}
}