-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.71 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
{
"name": "snap-keyring",
"version": "0.7.0",
"description": "Keyring for arbitrary JSON data",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"setup": "yarn install && yarn allow-scripts",
"test": "yarn build:dev && jest",
"clean": "rm -rf ./dist",
"lint": "eslint src --cache --ext js,ts",
"fmt": "prettier --write . --no-color",
"dist": "yarn clean && yarn build:tsc",
"prepare": "yarn dist",
"build:dev": "yarn clean && node build.js",
"build:tsc": "tsc --project tsconfig.build.json",
"types": "tsc --project tsconfig.json"
},
"dependencies": {
"@metamask/utils": "^2.0.0",
"ethereumjs-util": "7.0.10"
},
"author": "muji <[email protected]>",
"license": "MIT",
"devDependencies": {
"@lavamoat/allow-scripts": "^2.0.3",
"@metamask/eslint-config": "^9.0.0",
"@metamask/eslint-config-typescript": "^9.0.1",
"@types/events": "^3.0.0",
"@types/jest": "^28.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"esbuild": "^0.14.44",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^39.3.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.1",
"prettier": "^2.7.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.3"
},
"lavamoat": {
"allowScripts": {
"@metamask/eth-sig-util>ethereumjs-util>ethereum-cryptography>keccak": false,
"@metamask/eth-sig-util>ethereumjs-util>ethereum-cryptography>secp256k1": false,
"esbuild": false,
"ethereumjs-util>ethereum-cryptography>keccak": false,
"ethereumjs-util>ethereum-cryptography>secp256k1": false
}
}
}