This repository has been archived by the owner on Nov 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 1.97 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "new-release",
"description": "[MIRROR] Publish project to NPM following Conventional Commits specification and SemVer. Uses git-commits-since for detecting git commits since last SemVer tag and detect-next-version for what next version bump should be.",
"license": "Apache-2.0",
"licenseStart": "2017",
"scripts": {
"docs": "verb",
"lint": "eslint '**/*.js' --cache --fix --quiet --format codeframe",
"test-only": "asia -r esm",
"test": "nyc asia",
"precommit": "yarn run lint && yarn run test-only",
"commit": "yarn dry",
"dry": "git add -A && git status --porcelain && gitcommit",
"release": "tunnckocore-release"
},
"engines": {
"node": "^8.11.0 || >=10.13.0"
},
"dependencies": {
"@tunnckocore/release-cli": "^1.3.1",
"esm": "^3.0.84",
"mri": "^1.1.1"
},
"devDependencies": {
"@tunnckocore/config": "^1.0.2",
"asia": "^0.19.7"
},
"files": [
"src",
"index.js",
"cli.js"
],
"main": "index.js",
"module": "src/index.js",
"typings": "src/index.d.ts",
"version": "5.0.3",
"repository": "tunnckoCoreLabs/new-release",
"homepage": "https://github.com/tunnckoCoreLabs/new-release",
"author": "Charlike Mike Reagent (https://tunnckocore.com)",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"renovate": {
"extends": "tunnckocore"
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 4
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"maxWords": 10,
"list": [
"gitcommit",
"git-commits-since",
"detect-next-version",
"recommended-bump",
"@tunnckocore/config"
],
"highlight": "execa"
},
"lint": {
"reflinks": true
},
"reflinks": [
"new-release",
"semantic-release"
]
},
"bin": {
"release": "cli.js",
"new-release": "cli.js",
"tunnckocore-release": "cli.js"
}
}