-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathpackage.json
83 lines (83 loc) · 2.27 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
{
"name": "web3",
"namespace": "ethereum",
"version": "2.0.0-alpha",
"description": "Ethereum JavaScript API",
"repository": "https://github.com/ethereum/web3.js/tree/1.0/packages/web3",
"license": "LGPL-3.0",
"engines": {
"node": ">=8.0.0"
},
"main": "dist/web3.cjs.js",
"module": "dist/web3.esm.js",
"browser": "dist/web3.umd.js",
"bugs": {
"url": "https://github.com/ethereum/web3.js/issues"
},
"keywords": [
"Ethereum",
"JavaScript",
"API"
],
"author": "ethereum.org",
"authors": [
{
"name": "Samuel Furter",
"email": "[email protected]",
"homepage": "https://github.com/nivida"
},
{
"name": "Fabian Vogelsteller",
"email": "[email protected]",
"homepage": "https://github.com/frozeman"
},
{
"name": "Marek Kotewicz",
"email": "[email protected]",
"url": "https://github.com/debris"
},
{
"name": "Marian Oancea",
"url": "https://github.com/cubedro"
},
{
"name": "Gav Wood",
"email": "[email protected]",
"homepage": "http://gavwood.com"
},
{
"name": "Jeffery Wilcke",
"email": "[email protected]",
"url": "https://github.com/obscuren"
}
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"dtslint": "dtslint types --onlyTestTsNext",
"postinstall": "node angular-patch.js"
},
"types": "types/index.d.ts",
"dependencies": {
"@babel/runtime": "^7.3.1",
"@types/node": "^12.6.1",
"web3-core": "2.0.0-alpha",
"web3-eth": "2.0.0-alpha",
"web3-eth-personal": "2.0.0-alpha",
"web3-net": "2.0.0-alpha",
"web3-providers": "2.0.0-alpha",
"web3-shh": "2.0.0-alpha",
"web3-utils": "2.0.0-alpha"
},
"devDependencies": {
"definitelytyped-header-parser": "^1.0.1",
"dtslint": "0.4.2"
},
"files": [
"dist",
"types/index.d.ts",
"angular-patch.js"
],
"gitHead": "a09d2cc84c1f08aa673028cc7c517d40a1f72972"
}