forked from ethereumjs/ethereumjs-util
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "ethereumjs-util",
"version": "6.0.0",
"description": "a collection of utility functions for Ethereum",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"coverage": "npm run build:dist && istanbul cover _mocha",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"prepublishOnly": "npm run test && npm run build:dist",
"test": "npm run lint && npm run test:node && npm run test:browser",
"test:browser": "npm run build:dist && karma start karma.conf.js",
"test:node": "npm run build:dist && istanbul test mocha -- --reporter spec",
"build:dist": "babel index.js --source-root ./ -d ./dist",
"build:docs": "documentation build ./index.js --github --sort-order='alpha' -f md > ./docs/index.md"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereumjs/ethereumjs-util.git"
},
"keywords": [
"ethereum",
"utilties"
],
"author": "mjbecze <[email protected]>",
"contributors": [
{
"name": "Tim Coulter",
"email": "[email protected]",
"url": "https://github.com/tcoulter"
},
{
"name": "Nick Dodson",
"url": "https://github.com/SilentCicero"
},
{
"name": "Mr. Chico",
"url": "https://github.com/MrChico"
},
{
"name": "Dũng Trần",
"email": "[email protected]",
"url": "https://github.com/tad88dev"
},
{
"name": "Alex Beregszaszi",
"email": "[email protected]",
"url": "https://github.com/axic"
},
{
"name": "Taylor Gerring",
"url": "https://github.com/tgerring"
},
{
"name": "Kirill Fomichev",
"email": "[email protected]",
"url": "https://github.com/fanatid"
},
{
"name": "kumavis",
"email": "[email protected]",
"url": "https://github.com/kumavis"
},
{
"name": "Alexander Sinyagin",
"email": "[email protected]",
"url": "https://github.com/asinyagin"
}
],
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-util/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-util",
"dependencies": {
"bn.js": "^4.11.0",
"create-hash": "^1.1.2",
"ethjs-util": "0.1.6",
"keccak": "^1.0.2",
"rlp": "^2.0.0",
"safe-buffer": "^5.1.1",
"secp256k1": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^14.0.0",
"contributor": "^0.1.25",
"coveralls": "^3.0.0",
"documentation": "^5.2.0",
"istanbul": "^0.4.1",
"karma": "^2.0.0",
"karma-browserify": "^5.0.0",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "2.2.6",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"mocha": "^4.0.0",
"standard": "^10.0.0"
},
"standard": {
"globals": [
"describe",
"it"
],
"ignore": [
"dist/**"
]
}
}