-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.31 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
{
"name": "@metamask/snap-box",
"version": "1.0.4",
"private": true,
"description": "",
"homepage": "https://github.com/MetaMask/snap-box#readme",
"bugs": {
"url": "https://github.com/MetaMask/snap-box/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MetaMask/snap-box.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"author": "",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --parallel --topological --verbose run build",
"lint": "yarn lint:eslint && yarn lint:misc --check",
"lint:eslint": "eslint . --cache --ext js,ts",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier '**/*.json' '**/*.md' '!**/CHANGELOG.md' '**/*.yml' --ignore-path .gitignore",
"release": "release-it",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "yarn workspaces foreach --parallel --verbose run test"
},
"devDependencies": {
"@metamask/eslint-config": "10.0.0",
"@metamask/eslint-config-jest": "10.0.0",
"@metamask/eslint-config-nodejs": "10.0.0",
"@metamask/eslint-config-typescript": "10.0.0",
"@playwright/test": "1.34.3",
"@release-it-plugins/workspaces": "^3.2.0",
"@types/isomorphic-fetch": "0.0.36",
"@types/jest": "29.5.1",
"@typescript-eslint/eslint-plugin": "5.59.7",
"@typescript-eslint/parser": "5.59.7",
"eslint": "8.41.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-jsdoc": "39.9.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "29.5.0",
"prettier": "2.8.8",
"prettier-plugin-packagejson": "2.4.3",
"release-it": "15.10.3",
"ts-jest": "29.1.0",
"typescript": "4.9.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0.0"
},
"release-it": {
"plugins": {
"@release-it-plugins/workspaces": {
"workspaces": [
"packages/snap",
"packages/lib"
]
}
},
"git": {
"requireCleanWorkingDir": false,
"commitMessage": "chore: release v${version}"
},
"hooks": {
"after:bump": "yarn build"
},
"npm": false,
"github": {
"release": true
}
}
}