-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "@myetherwallet/eth2-keystore",
"version": "0.3.1",
"description": "eth2 keystore",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist --copy-files --delete-dir-on-start",
"test:web": "karma start",
"test:node": "mocha -r @babel/register test/**/*.spec.js",
"test": "npm run test:web && npm run test:node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MyEtherWallet/eth2-keystore.git"
},
"keywords": [
"eth2",
"keystore"
],
"author": "kvhnuke",
"license": "MIT",
"bugs": {
"url": "https://github.com/MyEtherWallet/eth2-keystore/issues"
},
"homepage": "https://github.com/MyEtherWallet/eth2-keystore#readme",
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/node": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@chainsafe/bls": "^6.0.3",
"@chainsafe/bls-hd-key": "^0.2.0",
"@chainsafe/ssz": "^0.10.2",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"babel-plugin-module-resolver": "^4.0.0",
"bip39": "^3.0.3",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-import-resolver-babel-module": "^5.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"ethereumjs-util": "^7.1.5",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.2",
"prettier": "^2.0.2",
"scrypt-js": "^3.0.1",
"uuid": "^8.3.1",
"webpack": "^4.42.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.21.0"
}
}