112 lines
2.6 KiB
Plaintext
112 lines
2.6 KiB
Plaintext
{
|
|
"name": "release-it",
|
|
"version": "14.6.1",
|
|
"description": "Generic CLI tool to automate versioning and package publishing related tasks.",
|
|
"keywords": [
|
|
"build",
|
|
"changelog",
|
|
"commit",
|
|
"distribution",
|
|
"git",
|
|
"github",
|
|
"gitlab",
|
|
"interactive",
|
|
"ci",
|
|
"npm",
|
|
"publish",
|
|
"push",
|
|
"release",
|
|
"release-it",
|
|
"repository",
|
|
"script",
|
|
"shell",
|
|
"tag",
|
|
"tool",
|
|
"version",
|
|
"semver",
|
|
"plugin"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/release-it/release-it.git"
|
|
},
|
|
"homepage": "https://github.com/release-it/release-it#readme",
|
|
"bugs": "https://github.com/release-it/release-it/issues",
|
|
"bin": {
|
|
"release-it": "bin/release-it.js"
|
|
},
|
|
"main": "./lib/index.js",
|
|
"files": [
|
|
"bin",
|
|
"config",
|
|
"lib",
|
|
"test"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint lib test",
|
|
"format": "prettier --write \"{lib,test}/**/*.js\"",
|
|
"test": "ava",
|
|
"coverage": "nyc --reporter=lcov --reporter=html --config=config/.codecov.yml npm test",
|
|
"codecov": "nyc --reporter=json --config=config/.codecov.yml npm test && codecov -f coverage/coverage-final.json",
|
|
"readme": "markdown-toc README.md -i --maxdepth=2 --bullets=-",
|
|
"release": "./bin/release-it.js"
|
|
},
|
|
"author": {
|
|
"email": "lars@webpro.nl",
|
|
"name": "Lars Kappert"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@iarna/toml": "2.2.5",
|
|
"@octokit/rest": "18.5.2",
|
|
"async-retry": "1.3.1",
|
|
"chalk": "4.1.0",
|
|
"cosmiconfig": "7.0.0",
|
|
"debug": "4.3.1",
|
|
"deprecated-obj": "2.0.0",
|
|
"execa": "5.0.0",
|
|
"find-up": "5.0.0",
|
|
"form-data": "4.0.0",
|
|
"git-url-parse": "11.4.4",
|
|
"globby": "11.0.3",
|
|
"got": "11.8.2",
|
|
"import-cwd": "3.0.0",
|
|
"inquirer": "8.0.0",
|
|
"is-ci": "3.0.0",
|
|
"lodash": "4.17.21",
|
|
"mime-types": "2.1.30",
|
|
"ora": "5.4.0",
|
|
"os-name": "4.0.0",
|
|
"parse-json": "5.2.0",
|
|
"semver": "7.3.5",
|
|
"shelljs": "0.8.4",
|
|
"update-notifier": "5.1.0",
|
|
"url-join": "4.0.1",
|
|
"uuid": "8.3.2",
|
|
"yaml": "1.10.2",
|
|
"yargs-parser": "20.2.7"
|
|
},
|
|
"devDependencies": {
|
|
"@octokit/request-error": "2.0.5",
|
|
"ava": "3.15.0",
|
|
"codecov": "3.8.1",
|
|
"eslint": "7.23.0",
|
|
"eslint-config-prettier": "8.1.0",
|
|
"eslint-plugin-ava": "12.0.0",
|
|
"eslint-plugin-import": "2.22.1",
|
|
"eslint-plugin-prettier": "3.3.1",
|
|
"markdown-toc": "1.2.0",
|
|
"mock-fs": "4.13.0",
|
|
"mock-stdio": "1.0.3",
|
|
"nock": "13.0.11",
|
|
"nyc": "15.1.0",
|
|
"prettier": "2.2.1",
|
|
"proxyquire": "2.1.3",
|
|
"sinon": "10.0.1",
|
|
"strip-ansi": "6.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|