-
Notifications
You must be signed in to change notification settings - Fork 646
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.21 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.21 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
{
"name": "@metamask/example-snaps",
"version": "3.25.0",
"private": true,
"description": "A collection of examples demonstrating how to build MetaMask Snaps",
"keywords": [
"MetaMask",
"Snaps",
"Ethereum"
],
"homepage": "https://github.com/MetaMask/snaps/tree/main/packages/examples#readme",
"bugs": {
"url": "https://github.com/MetaMask/snaps/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/snaps.git"
},
"license": "(MIT-0 OR Apache-2.0)",
"sideEffects": false,
"files": [],
"scripts": {
"build": "yarn workspaces filter --include 'packages/examples/packages/**' --parallel --no-private run build",
"build:clean": "yarn clean && yarn build",
"changelog:validates": "yarn workspaces foreach --worktree --parallel --verbose run changelog:validate",
"clean": "yarn workspaces foreach --worktree --parallel --verbose --no-private run clean",
"lint": "yarn workspaces foreach --worktree --parallel --verbose --interlaced --no-private run lint && yarn lint:dependencies",
"lint:ci": "yarn lint:eslint && yarn lint:misc --check",
"lint:dependencies": "depcheck",
"lint:eslint": "eslint . --cache",
"lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
"lint:misc": "prettier --no-error-on-unmatched-pattern --log-level warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" \"!packages/**\" --ignore-path ../../.gitignore",
"since-latest-release": "../../scripts/since-latest-release.sh",
"start": "yarn workspaces filter --include 'packages/examples/packages/**' --parallel --interlaced --no-private --jobs unlimited run start",
"start:test": "yarn start",
"test": "jest --reporters=jest-silent-reporter",
"test:clean": "jest --clearCache",
"test:post": "jest-it-up",
"test:verbose": "jest --verbose",
"test:watch": "jest --watch"
},
"devDependencies": {
"@lavamoat/allow-scripts": "^3.3.4",
"@metamask/auto-changelog": "^5.0.2",
"@types/node": "18.14.2",
"depcheck": "^1.4.7",
"eslint": "^9.11.0",
"jest-silent-reporter": "^0.6.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "~5.3.3"
},
"engines": {
"node": "^20 || >=22"
}
}