UNPKG

node-publisher

Version:

A configurable release automation tool inspired by create-react-app and Travis CI.

81 lines (80 loc) 2.08 kB
{ "name": "node-publisher", "version": "3.2.1", "description": "A configurable release automation tool inspired by create-react-app and Travis CI.", "author": "Attila Večerek <avecerek@zendesk.com>", "homepage": "https://github.com/zendesk/node-publisher#readme", "repository": { "type": "git", "url": "git+ssh://git@github.com/zendesk/node-publisher.git" }, "bugs": { "url": "https://github.com/zendesk/node-publisher/issues" }, "main": "src/index.js", "bin": "./bin/node-publisher", "scripts": { "coverage": "jest --coverage", "lint": "eslint src/**/*.js bin/**", "lint-staged": "lint-staged", "release": "./bin/node-publisher release", "test": "jest", "travis": "yarn lint && yarn test" }, "dependencies": { "check-node-version": "3.2.0", "commander": "2.15.1", "inquirer": "6.5.0", "js-yaml": "3.13.1", "offline-github-changelog": "3.1.0", "semver": "7.7.2" }, "devDependencies": { "babel-eslint": "10.1.0", "eslint": "^6.0.0", "eslint-config-prettier": "^6.0.0", "eslint-config-standard": "^14.0.0", "eslint-plugin-import": "^2.18.0", "eslint-plugin-jest": "^23.20.0", "eslint-plugin-node": "^9.1.0", "eslint-plugin-promise": "^4.2.0", "eslint-plugin-standard": "^4.0.0", "jest": "^27.0.0", "lint-staged": "^9.0.0", "pre-commit": "1.2.2", "prettier": "1.18.2", "prettier-package-json": "2.8.0" }, "keywords": [ "lerna", "npm", "release-management", "yarn" ], "engines": { "node": ">=20" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "licenses": [ { "type": "Apache 2.0", "url": "https://github.com/zendesk/node-publisher/blob/master/LICENSE" } ], "lint-staged": { "*.js": [ "eslint", "prettier --single-quote --write", "git add" ], "package.json": [ "prettier-package-json --write", "git add" ] }, "packageManager": "yarn@1.22.21", "pre-commit": "lint-staged" }