-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.57 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
{
"name": "nexash-metamask-snap",
"version": "24.11.4",
"description": "A MetaMask Snap for Nexa, fully-supporting both $TOKENS and NFTs.",
"license": "MIT",
"scripts": {
"build": "yarn workspaces foreach --parallel --topological --verbose run build",
"clean": "yarn workspaces foreach --parallel --topological --verbose run clean",
"install-chrome": "./scripts/install-chrome.sh",
"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",
"start": "yarn workspaces foreach --parallel --interlaced --verbose run start",
"test": "sudo jest index.js",
"test:all": "yarn workspaces foreach run test"
},
"dependencies": {
"object-assign-polyfill": "0.1.0"
},
"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",
"@types/jest": "27.5.2",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-jsdoc": "39.2.9",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.2.1",
"prettier-plugin-packagejson": "2.2.18",
"typescript": "5.2.2"
}
}