]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blob - libs/ethereumjs-util/package.json
Add ethereumjs-util to libs directory
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / libs / ethereumjs-util / package.json
1 {
2 "name": "ethereumjs-util",
3 "version": "6.0.0",
4 "description": "a collection of utility functions for Ethereum",
5 "main": "dist/index.js",
6 "files": [
7 "dist"
8 ],
9 "scripts": {
10 "build": "browserify index.js -s ethUtil -o /tmp/ethereumjs-util.js",
11 "coverage": "npm run build:dist && istanbul cover _mocha",
12 "coveralls": "npm run coverage && coveralls <coverage/lcov.info",
13 "lint": "standard",
14 "prepublishOnly": "npm run test && npm run build:dist",
15 "test": "npm run lint && npm run test:node && npm run test:browser",
16 "test:browser": "npm run build:dist && karma start karma.conf.js",
17 "test:node": "npm run build:dist && istanbul test mocha -- --reporter spec",
18 "build:dist": "babel index.js --source-root ./ -d ./dist",
19 "build:docs": "documentation build ./index.js --github --sort-order='alpha' -f md > ./docs/index.md"
20 },
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/ethereumjs/ethereumjs-util.git"
24 },
25 "keywords": [
26 "ethereum",
27 "utilties"
28 ],
29 "author": "mjbecze <mjbecze@gmail.com>",
30 "contributors": [
31 {
32 "name": "Tim Coulter",
33 "email": "tim@timothyjcoulter.com",
34 "url": "https://github.com/tcoulter",
35 "contributions": 1,
36 "additions": 2,
37 "deletions": 2
38 },
39 {
40 "name": "Nick Dodson",
41 "url": "https://github.com/SilentCicero",
42 "contributions": 2,
43 "additions": 26,
44 "deletions": 2
45 },
46 {
47 "name": "Mr. Chico",
48 "url": "https://github.com/MrChico",
49 "contributions": 1,
50 "additions": 11,
51 "deletions": 1
52 },
53 {
54 "name": "Dũng Trần",
55 "email": "tad88.dev@gmail.com",
56 "url": "https://github.com/tad88dev",
57 "contributions": 2,
58 "additions": 5,
59 "deletions": 5
60 },
61 {
62 "name": "Alex Beregszaszi",
63 "email": "alex@rtfs.hu",
64 "url": "https://github.com/axic",
65 "contributions": 77,
66 "additions": 1796,
67 "deletions": 642
68 },
69 {
70 "name": "Taylor Gerring",
71 "url": "https://github.com/tgerring",
72 "contributions": 1,
73 "additions": 1,
74 "deletions": 1
75 },
76 {
77 "name": "Kirill Fomichev",
78 "email": "fanatid@ya.ru",
79 "url": "https://github.com/fanatid",
80 "contributions": 8,
81 "additions": 32,
82 "deletions": 16
83 },
84 {
85 "name": "kumavis",
86 "email": "aaron@kumavis.me",
87 "url": "https://github.com/kumavis",
88 "contributions": 2,
89 "additions": 2,
90 "deletions": 2
91 },
92 {
93 "name": "Alexander Sinyagin",
94 "email": "sinyagin.alexander@gmail.com",
95 "url": "https://github.com/asinyagin",
96 "contributions": 1,
97 "additions": 3,
98 "deletions": 1
99 }
100 ],
101 "license": "MPL-2.0",
102 "bugs": {
103 "url": "https://github.com/ethereumjs/ethereumjs-util/issues"
104 },
105 "homepage": "https://github.com/ethereumjs/ethereumjs-util",
106 "dependencies": {
107 "bn.js": "^4.11.0",
108 "create-hash": "^1.1.2",
109 "ethjs-util": "^0.1.6",
110 "keccak": "^1.0.2",
111 "rlp": "^2.0.0",
112 "safe-buffer": "^5.1.1",
113 "secp256k1": "^3.0.1"
114 },
115 "devDependencies": {},
116 "standard": {
117 "globals": [
118 "describe",
119 "it"
120 ],
121 "ignore": [
122 "dist/**"
123 ]
124 }
125 }