This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
forked from robvanderleek/create-issue-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.3 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
{
"name": "create-issue-branch",
"version": "1.0.0",
"description": "Creates a new branch after assigning an issue",
"author": "Rob van der Leek <[email protected]> (https://twitter.com/robvanderleek)",
"license": "ISC",
"repository": "https://github.com//create-issue-branch.git",
"homepage": "https://github.com//create-issue-branch",
"bugs": "https://github.com//create-issue-branch/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"release": {
"repositoryUrl": "https://github.com/robvanderleek/create-issue-branch",
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
]
]
},
"scripts": {
"git-info": "node src/generate-versionjs.js > src/version.js",
"build": "yarn git-info",
"start": "yarn git-info && NODE_OPTIONS='--max_old_space_size=490' probot run ./src/probot.js",
"lint": "standard --fix",
"test": "yarn git-info && jest && standard",
"coverage": "yarn git-info && jest --collect-coverage",
"test:docker": "docker-compose up",
"test:watch": "yarn git-info && jest --watch --notify --notifyMode=change --coverage",
"dist": "yarn git-info && ncc build src/action.js"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@analytics/google-analytics": "^1.0.3",
"@probot/adapter-github-actions": "^3.1.3",
"@types/dlv": "^1.1.4",
"analytics": "^0.8.1",
"js-tokens": "^8.0.1",
"node-fetch": "^2.6.1",
"probot": "^12.3.3",
"slice": "^1.0.0",
"wildcard-match": "^5.1.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38",
"jest": "^29.7.0",
"nock": "^13.3.8",
"nodemon": "^3.0.1",
"smee-client": "^2.0.0",
"standard": "^16.0.4"
},
"engines": {
"node": ">= 20.x"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/dist/*.js"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70
}
}
}
}