UNPKG

2.73 kBJSONView Raw
1{
2 "name": "semantic-release-cli",
3 "description": "setup automated semver compliant package publishing",
4 "version": "4.0.12",
5 "author": "Christoph Witzko <npm@christophwitzko.com> (http://christophwitzko.com)",
6 "ava": {
7 "require": [
8 "babel-register",
9 "babel-polyfill"
10 ]
11 },
12 "babel": {
13 "presets": [
14 [
15 "env",
16 {
17 "targets": {
18 "node": "current"
19 }
20 }
21 ]
22 ]
23 },
24 "bin": {
25 "semantic-release-cli": "./bin/semantic-release.js"
26 },
27 "bugs": {
28 "url": "https://github.com/semantic-release/cli/issues"
29 },
30 "config": {
31 "commitizen": {
32 "path": "cz-conventional-changelog"
33 }
34 },
35 "dependencies": {
36 "babel-polyfill": "^6.26.0",
37 "babel-preset-env": "^1.6.1",
38 "babel-register": "^6.26.0",
39 "base32": "0.0.6",
40 "clipboardy": "^1.2.2",
41 "git-config-path": "^2.0.0",
42 "github-url-from-git": "^1.4.0",
43 "ini": "^1.3.4",
44 "inquirer": "^6.0.0",
45 "js-yaml": "^3.3.1",
46 "lodash": "^4.16.4",
47 "nopt": "^4.0.0",
48 "npm": "^6.0.0",
49 "npm-profile": "^4.0.1",
50 "npmlog": "^4.0.0",
51 "p-retry": "^2.0.0",
52 "parse-git-config": "^3.0.0",
53 "parse-github-repo-url": "^1.0.0",
54 "pify": "^4.0.0",
55 "request": "^2.85.0",
56 "request-debug": "^0.2.0",
57 "request-promise": "^4.1.1",
58 "travis-ci": "^2.1.1",
59 "update-notifier": "^2.3.0",
60 "user-home": "^2.0.0",
61 "validator": "^10.0.0"
62 },
63 "devDependencies": {
64 "ava": "^0.25.0",
65 "commitizen": "^3.0.0",
66 "cz-conventional-changelog": "^2.0.0",
67 "nyc": "^12.0.1",
68 "rimraf": "^2.4.2",
69 "semantic-release": "^15.2.0",
70 "xo": "^0.23.0",
71 "travis-deploy-once": "^5.0.0"
72 },
73 "engines": {
74 "node": ">=6",
75 "npm": ">=3"
76 },
77 "files": [
78 "bin",
79 "src"
80 ],
81 "homepage": "https://github.com/semantic-release/cli",
82 "keywords": [
83 "author",
84 "automation",
85 "changelog",
86 "module",
87 "package",
88 "publish",
89 "release",
90 "semver",
91 "version"
92 ],
93 "license": "MIT",
94 "main": "src/index.js",
95 "nyc": {
96 "include": [
97 "src/**/*.js"
98 ],
99 "reporter": [
100 "json",
101 "text",
102 "html"
103 ],
104 "all": true
105 },
106 "preferGlobal": true,
107 "prettier": {
108 "printWidth": 120,
109 "trailingComma": "es5"
110 },
111 "repository": {
112 "type": "git",
113 "url": "https://github.com/semantic-release/cli.git"
114 },
115 "scripts": {
116 "cm": "git-cz",
117 "codecov": "codecov -f coverage/coverage-final.json",
118 "lint": "xo",
119 "pretest": "npm run lint",
120 "semantic-release": "semantic-release",
121 "test": "nyc ava -v",
122 "travis-deploy-once": "travis-deploy-once"
123 },
124 "xo": {
125 "prettier": true,
126 "space": true
127 }
128}