-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
90 lines (90 loc) · 2.78 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": "action-create-release-pr",
"private": true,
"version": "4.0.0",
"description": "A GitHub Action for creating a release PR. Monorepo-compatible.",
"files": [
"lib/"
],
"main": "lib/index.js",
"engines": {
"node": "^18.18 || >=20",
"yarn": "^1.22.22"
},
"scripts": {
"setup": "yarn install && yarn setup:postinstall",
"setup:postinstall": "yarn allow-scripts",
"lint:eslint": "yarn eslint . --cache --ext js,ts",
"lint:misc": "prettier '**/*.json' '**/*.md' '!CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"build:clean": "yarn rimraf 'lib/*' 'dist/*'",
"build:tsc": "tsc --project tsconfig.build.json",
"build:ncc": "ncc build lib/index.js --out dist",
"build": "yarn build:clean && yarn build:tsc && yarn build:ncc",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "yarn build && yarn lint && yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/action-create-release-pr.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"TypeScript",
"npm",
"monorepo"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MetaMask/action-create-release-pr/issues"
},
"homepage": "https://github.com/MetaMask/action-create-release-pr#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@metamask/action-utils": "^1.0.0",
"@metamask/auto-changelog": "^4.0.0",
"execa": "^4.1.0",
"glob": "^7.1.7",
"prettier": "^3.3.3",
"semver": "^7.3.5"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^2.5.1",
"@lavamoat/preinstall-always-fail": "^2.0.0",
"@metamask/eslint-config": "^12.2.0",
"@metamask/eslint-config-jest": "^12.1.0",
"@metamask/eslint-config-nodejs": "^12.1.0",
"@metamask/eslint-config-typescript": "^12.1.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.22",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^16.18.59",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^28.1.0",
"lodash.clonedeep": "^4.5.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"typescript": "~4.8.4"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
},
"packageManager": "[email protected]"
}