node-publisher
Version:
A configurable release automation tool inspired by create-react-app and Travis CI.
89 lines • 2.31 kB
JSON
{
"name": "node-publisher",
"version": "3.4.3",
"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": {
"build": "echo 'no build step required'",
"coverage": "jest --coverage",
"lint": "eslint src/**/*.js bin/**",
"lint-staged": "lint-staged",
"release": "./bin/node-publisher release",
"test": "jest",
"travis": "yarn lint && yarn test"
},
"resolutions": {
"tmp": "^0.2.6",
"form-data": "^3.0.5",
"lodash": "^4.18.1",
"flatted": "^3.4.2",
"filelist/minimatch": "^5.1.9",
"brace-expansion": "^1.1.13"
},
"dependencies": {
"check-node-version": "3.2.0",
"commander": "2.15.1",
"inquirer": "6.5.0",
"js-yaml": "5.2.2",
"offline-github-changelog": "4.0.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@4.17.1",
"pre-commit": "lint-staged"
}