-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 2.54 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
110
111
112
{
"name": "next-bundlesize-action",
"version": "1.9.3",
"private": true,
"publishConfig": {
"access": "restricted"
},
"description": "TypeScript template action",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:ho-nl/next-bundlesize-action.git"
},
"author": "YourNameOrOrganization",
"main": "lib/main.js",
"scripts": {
"all": "yarn build && yarn format && yarn run pack",
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build -m",
"test": "jest"
},
"keywords": [
"actions",
"node",
"setup"
],
"dependencies": {
"18": "^0.0.0",
"@actions/core": "^1.10.1",
"@vercel/ncc": "^0.38.1",
"lodash-es": "^4.17.21",
"node-shell-parser": "^0.2.1",
"tablemark": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.1",
"@commitlint/config-conventional": "^18.4.0",
"@semantic-release/git": "^10.0.1",
"@types/diff": "^5.0.8",
"@types/jest": "^29.5.8",
"@types/lodash": "^4.14.201",
"@types/lodash-es": "^4.17.11",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"js-yaml": "^4.1.0",
"prettier": "^2",
"prettier-plugin-package": "^1.3.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^22.0.7",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "yarn@4.0.1",
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"printWidth": 100,
"proseWrap": "always",
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 80
}
}
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"dist/*",
"package.json"
]
}
]
],
"branches": [
{
"name": "master"
}
]
}
}