-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.02 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
{
"name": "the-sorting-hat",
"version": "1.0.0",
"private": true,
"description": "GitHub action to sort things with labels",
"author": "Lisa Dean <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/lisadean/the-sorting-hat",
"keywords": [
"github",
"action"
],
"scripts": {
"all": "npm run format && npm run lint && npm run build",
"all:test": "npm run format && npm run lint && npm run build && npm test",
"build": "ncc build src/index.ts --source-map",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest"
},
"dependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"minimatch": "^3.0.4"
},
"devDependencies": {
"@octokit/types": "^6.25.0",
"@octokit/webhooks": "^9.10.0",
"@octokit/webhooks-definitions": "^3.67.3",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"@vercel/ncc": "^0.29.0",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.2.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^26.6.3",
"nock": "^13.0.5",
"prettier": "^2.3.2",
"semantic-release": "^17.4.4",
"ts-jest": "^26.4.4",
"ts-node": "^10.1.0",
"typescript": "^4.1.3"
},
"release": {
"branches": ["main","dev"],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
},
"engines": {
"node": ">= 10.13.0"
},
"prettier": {
"printWidth": 140,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "always",
"endOfLine": "lf",
"parser": "typescript",
"overrides": [
{
"files": [
"**/**.yml",
"**/**.yaml"
],
"options": {
"tabWidth": 2,
"useTabs": false
}
}
]
}
}