-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.18 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.18 KB
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
{
"name": "@metamask/github-tools",
"version": "1.9.1",
"private": true,
"description": "Tools for interacting with the GitHub API to do metrics gathering",
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/github-tools.git"
},
"scripts": {
"changelog:check": "ts-node src/changelog-check.ts",
"count-references-to-contributor-docs": "ts-node --swc src/scripts/count-references-to-contributor-docs/cli.ts",
"gen:commits": "node .github/scripts/generate-rc-commits.mjs",
"get-review-metrics": "ts-node src/get-review-metrics.ts",
"lint": "yarn lint:tsc && yarn lint:eslint && yarn lint:constraints && yarn lint:misc --check && yarn lint:dependencies --check",
"lint:constraints": "yarn constraints",
"lint:changelog": "auto-changelog validate --prettier",
"lint:dependencies": "depcheck && yarn dedupe",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:constraints --fix && yarn lint:misc --write && yarn lint:dependencies",
"lint:misc": "prettier '**/*.json' '**/*.md' '**/*.yml' '!.yarnrc.yml' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"lint:tsc": "tsc",
"slack:release-testing": "node .github/scripts/slack-release-testing.mjs",
"test": "jest && jest-it-up",
"test:watch": "jest --watch",
"update-release-sheet": "node .github/scripts/update-release-sheet.mjs"
},
"dependencies": {
"@metamask/auto-changelog": "^5.3.2",
"@metamask/utils": "^7.1.0",
"@octokit/graphql": "^7.0.1",
"@octokit/request": "^8.1.1",
"@octokit/rest": "^19.0.13",
"@slack/web-api": "^6.0.0",
"@slack/webhook": "^7.0.6",
"@types/luxon": "^3.3.0",
"axios": "^0.24.0",
"csv-parse": "5.6.0",
"execa": "^9.5.2",
"googleapis": "144.0.0",
"luxon": "^3.3.0",
"ora": "^5.4.1",
"semver": "^7.7.2",
"simple-git": "3.27.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^2.3.1",
"@lavamoat/preinstall-always-fail": "^1.0.0",
"@metamask/eslint-config": "^12.0.0",
"@metamask/eslint-config-jest": "^12.0.0",
"@metamask/eslint-config-nodejs": "^12.0.0",
"@metamask/eslint-config-typescript": "^12.0.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.80",
"@types/jest": "^28.1.6",
"@types/node": "^20.3.2",
"@types/semver": "^7",
"@types/unzipper": "^0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"depcheck": "^1.4.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jsdoc": "^39.9.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^6.1.1",
"jest": "^28.1.3",
"jest-it-up": "^2.0.2",
"prettier": "^3.6.2",
"prettier-plugin-packagejson": "^2.5.19",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"packageManager": "yarn@4.10.3",
"engines": {
"node": ">=20.0.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@swc/core": false
}
}
}