-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.65 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.65 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
{
"name": "@metamask/security-codescanner-monorepo",
"version": "1.2.0",
"private": true,
"description": "Security Code Scanner - Monorepo",
"repository": {
"type": "git",
"url": "https://github.com/metamask/security-codescanner-monorepo.git"
},
"license": "ISC",
"author": "metamask",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -A run build",
"check": "node shared/scripts/check-packages.js",
"clean": "yarn workspaces foreach -A run clean && node shared/scripts/clean-all.js",
"install:all": "yarn install --immutable",
"lint": "yarn lint:misc --check && yarn lint:dependencies --check",
"lint:changelog": "auto-changelog validate --prettier",
"lint:dependencies": "depcheck && yarn dedupe",
"lint:fix": "yarn lint:misc --write && yarn lint:dependencies",
"lint:misc": "prettier '**/*.json' '**/*.md' '**/*.yml' '**/*.js' '**/*.ts' '!.yarnrc.yml' '!**/codeql-template.yml' '!**/rule.template.*' --ignore-path .gitignore --no-error-on-unmatched-pattern",
"test": "yarn workspaces foreach -A run test",
"validate": "node shared/scripts/validate-actions.js"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.3.1",
"@lavamoat/preinstall-always-fail": "^2.1.0",
"@metamask/auto-changelog": "^5.1.0",
"depcheck": "^1.4.7",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.10",
"prettier-plugin-sh": "^0.15.0",
"yaml": "^2.6.1"
},
"packageManager": "yarn@4.7.0",
"engines": {
"node": ">=20.0.0"
},
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false
}
}
}