{ "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" ] } }