forked from ethereumjs/ethereumjs-account
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.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
{
"name": "@shyftnetwork/shyft_ethereumjs-account",
"version": "2.0.5",
"description": "Encoding, decoding and validation of Ethereum's Account schema",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/shyftnetwork/shyft_ethereumjs-account.git"
},
"scripts": {
"coverage": "istanbul cover ./test/index.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"test": "tape ./test/index.js"
},
"keywords": [
"ethereum",
"account"
],
"author": "cf (chris@shyft.network)",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/shyftnetwork/shyft_ethereumjs-account/issues"
},
"homepage": "https://github.com/shyftnetwork/shyft_ethereumjs-account#readme",
"dependencies": {
"@shyftnetwork/shyft_ethereumjs-util": "^5.0.0",
"rlp": "^2.0.0",
"safe-buffer": "^5.1.1",
"standard": "^11.0.1"
},
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^4.12.1",
"istanbul": "^0.4.1",
"tape": "^4.0.3"
}
}