-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.27 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "github-action-branch-mapper",
"version": "0.0.0-dev",
"description": "Automatically rename current branch reference to corresponding environment name according to provided naming convention mappings",
"main": "index.js",
"license": "GPL-3.0",
"private": true,
"scripts": {
"format": "prettier --write **/*.js",
"format:check": "prettier --check **/*.js",
"prepare": "./node_modules/.bin/ncc build index.js -m -o dist",
"postpublish": "npm run clean",
"start:action": "npm run prepare && node dist/index.js",
"lint": "eslint --cache --fix --quiet --format codeframe --ext js .",
"lint:staged": "lint-staged --no-stash --allow-empty",
"pretty": "pretty-quick --staged --pattern '!test/tests/lint/**'",
"semantic-release": "semantic-release",
"commit": "git-cz",
"test:folio": "folio tests/spec/",
"test": "TZ=utc jest",
"test:coverage": "jest --collectCoverage",
"test:watch": "jest --watch",
"test:all": "npm run test && npm run test:folio",
"version": "git add -A dist",
"postversion": "git push && git push --tags",
"all": "npm run format && npm run lint && npm run prepare"
},
"dependencies": {
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.1",
"@vercel/ncc": "~>0.27.0",
"babel-eslint": "^10.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-spellcheck": "0.0.8",
"expect": "^26.6.2",
"folio": "^0.3.18",
"git-cz": "^4.1.0",
"husky": "^5.0.9",
"jest": "^27.0.0-next.2",
"jest-circus": "^26.6.3",
"prettier": "^2.1.2",
"lint-staged": "^10.5.4",
"pretty-quick": "^3.1.0",
"semantic-release": ">=17.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexRogalskiy/github-action-branch-mapper.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 8.0.0"
},
"keywords": [
"github-actions",
"branch mapping",
"javascript"
],
"release": {
"tagFormat": "v${version}",
"plugins": [
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false,
"tarballDir": "dist",
"allowSameVersion": true
}
],
[
"@semantic-release/github",
{
"assets": "dist/*.tgz"
}
]
]
},
"bugs": {
"url": "https://github.com/AlexRogalskiy/github-action-branch-mapper/issues"
},
"homepage": "https://github.com/AlexRogalskiy/github-action-branch-mapper",
"author": {
"name": "Alexander Rogalskiy",
"url": "https://github.com/AlexRogalskiy"
},
"funding": "https://github.com/sponsors/AlexRogalskiy",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}