-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 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
56
57
58
59
{
"name": "@getsafle/vault-optimism-controller",
"version": "1.0.8",
"description": "optimism controller for safle vault",
"engines": {
"node": ">= 10"
},
"main": "src/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint --fix . --ext .js",
"test": "mocha \"test/**.js\" --timeout 15000",
"test:coverage": "npm run cover:unit && npm run cover:report",
"test:coveragehtml": "npm run cover:unit && npm run cover:reporthtml",
"cover:unit": "nyc --silent npm run test",
"cover:report": "nyc report --reporter=lcov --reporter=text --report-dir='./jscoverage'",
"cover:reporthtml": "nyc report --reporter=html --report-dir='./jscoverage'"
},
"nyc": {
"exclude": ["test/**.js"]
},
"repository": {
"type": "git",
"url": "git+https://github.com/getsafle/vault-optimism-controller.git"
},
"keywords": [
"optimism",
"keyring"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/getsafle/vault-optimism-controller/issues"
},
"homepage": "https://github.com/getsafle/vault-optimism-controller#readme",
"devDependencies": {
"@metamask/eslint-config": "^4.0.0",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^8.1.3",
"nyc": "^15.0.0"
},
"dependencies": {
"bip39": "^3.0.4",
"browser-passworder": "^2.0.3",
"crypto-js": "^4.1.1",
"eth-hd-keyring": "^3.6.0",
"eth-sig-util": "^3.0.1",
"eth-simple-keyring": "^4.2.0",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^7.1.0",
"hdkey": "^2.0.1",
"loglevel": "^1.7.1",
"obs-store": "^4.0.3",
"web3": "^1.6.0"
}
}