UNPKG

2.4 kBJSONView Raw
1{
2 "name": "@develar/semantic-release",
3 "description": "automated semver compliant package publishing",
4 "version": "6.3.22",
5 "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
6 "bin": {
7 "semantic-release": "bin/semantic-release.js"
8 },
9 "bugs": {
10 "url": "https://github.com/semantic-release/semantic-release/issues"
11 },
12 "czConfig": {
13 "path": "node_modules/cz-conventional-changelog/"
14 },
15 "dependencies": {
16 "@semantic-release/commit-analyzer": "^2.0.0",
17 "@semantic-release/error": "^1.0.0",
18 "bluebird-lst-c": "^1.0.2",
19 "conventional-changelog": "^1.1.0",
20 "conventional-commits-parser": "^1.3.0",
21 "debug": "^2.2.0",
22 "fs-extra-p": "^2.0.3",
23 "git-head": "^1.14.0",
24 "github": "^5.3.3",
25 "hosted-git-info": "^2.1.5",
26 "normalize-package-data": "^2.3.5",
27 "npm-registry-client": "^7.3.0",
28 "require-relative": "^0.8.7",
29 "run-auto": "^2.0.0",
30 "run-series": "^1.1.4",
31 "semver": "^5.3.0",
32 "through2": "^2.0.1"
33 },
34 "devDependencies": {
35 "coveralls": "^2.11.14",
36 "cz-conventional-changelog": "^1.2.0",
37 "mkdirp": "^0.5.1",
38 "nixt": "^0.5.0",
39 "nock": "^9.0.0",
40 "npm-registry-couchapp": "^2.6.12",
41 "nyc": "^8.3.2",
42 "proxyquire": "^1.7.10",
43 "rimraf": "^2.5.4",
44 "standard": "^8.5.0",
45 "tap": "^8.0.0"
46 },
47 "engines": {
48 "node": ">=0.10",
49 "npm": ">=2"
50 },
51 "homepage": "https://github.com/semantic-release/semantic-release/tree/next#readme",
52 "keywords": [
53 "author",
54 "automation",
55 "changelog",
56 "module",
57 "package",
58 "publish",
59 "release",
60 "semver",
61 "version"
62 ],
63 "license": "MIT",
64 "main": "bin/semantic-release.js",
65 "files": [
66 "bin",
67 "src"
68 ],
69 "publishConfig": {
70 "tag": "next"
71 },
72 "release": {
73 "branch": "caribou"
74 },
75 "repository": {
76 "type": "git",
77 "url": "git+https://github.com/semantic-release/semantic-release.git"
78 },
79 "scripts": {
80 "coverage": "nyc report",
81 "coverage:upload": "npm run coverage -s -- --reporter=text-lcov | coveralls",
82 "pretest": "standard",
83 "semantic-release": "./bin/semantic-release.js pre && npm publish && ./bin/semantic-release.js post",
84 "test": "npm run test:unit && npm run test:integration",
85 "test:integration": "tap --no-cov test/scenarios/*.js",
86 "test:unit": "nyc tap --no-cov test/specs/*.js"
87 }
88}