forked from bloq/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.82 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
{
"name": "web3",
"private": true,
"version": "1.2.1",
"description": "Ethereum JavaScript API wrapper repository",
"license": "LGPL-3.0",
"engines": {
"node": ">=8.0.0"
},
"main": "./packages/web3/src/index.js",
"directories": {
"doc": "./doc",
"test": "./test"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build": "gulp",
"build-all": "gulp all",
"release": "lerna bootstrap; lerna publish",
"bootstrap": "lerna bootstrap",
"watch": "gulp watch",
"docs": "cd docs; make html;",
"lint": "jshint *.js packages",
"test": "mocha; jshint *.js packages",
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereum/web3.js.git"
},
"homepage": "https://github.com/ethereum/web3.js",
"bugs": {
"url": "https://github.com/ethereum/web3.js/issues"
},
"keywords": [
"Ethereum",
"JavaScript",
"API"
],
"author": "ethereum.org",
"authors": [
{
"name": "Fabian Vogelsteller",
"email": "fabian@ethereum.org",
"homepage": "https://github.com/frozeman"
},
{
"name": "Marek Kotewicz",
"email": "marek@parity.io",
"url": "https://github.com/debris"
},
{
"name": "Marian Oancea",
"url": "https://github.com/cubedro"
},
{
"name": "Gav Wood",
"email": "g@parity.io",
"homepage": "http://gavwood.com"
},
{
"name": "Jeffery Wilcke",
"email": "jeffrey.wilcke@ethereum.org",
"url": "https://github.com/obscuren"
}
],
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@types/bignumber.js": "^4.0.2",
"@types/underscore": "^1.8.0",
"bignumber.js": "^4.0.0",
"bluebird": "3.3.1",
"bn.js": "^4.11.8",
"bower": "1.8.8",
"browserify": "^16.3.0",
"chai": "^4.2.0",
"coveralls": "^3.0.4",
"crypto-js": "^3.1.9-1",
"del": "^4.1.1",
"ethers": "4.0.33",
"ethjs-signer": "^0.1.1",
"exorcist": "^1.0.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^0.6.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.2",
"istanbul": "^0.4.5",
"jshint": "^2.10.2",
"lerna": "^2.5.1",
"mocha": "^6.1.4",
"sandboxed-module": "^2.0.3",
"underscore": "^1.9.1",
"vinyl-source-stream": "^2.0.0"
}
}