forked from aionnetwork/aion_web3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.9 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
{
"name": "aion-web3",
"namespace": "aion",
"version": "1.0.0",
"description": "Aion JavaScript API wrapper repository",
"license": "LGPL-3.0",
"main": "./packages/web3/src/index.js",
"directories": {
"doc": "./doc",
"test": "./test"
},
"scripts": {
"lerna": "lerna bootstrap",
"postinstall": "lerna bootstrap",
"build": "lerna bootstrap",
"docs": "cd docs; make html;",
"lint": "jshint *.js packages",
"browserify": "mkdir ./dist && browserify index.js -o dist/web3.min.js",
"test": "jshint *.js packages; mocha --opts mocha.opt",
"integ-test": "mocha --opts mocha.opt -t 50000 integ_test/*.js --exclude _integ_test_config.js",
"coverage": "nyc mocha || true",
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose",
"dev-test": "nodemon -L -d 1 -w packages -w test --ext js --exec mocha --opts mocha.opts --watch test || true"
},
"repository": {
"type": "git",
"url": "https://github.com/aionnetwork/aion_web3.git"
},
"homepage": "https://github.com/aionnetwork/aion_web3",
"bugs": {
"url ": "https://github.com/aionnetwork/aion_web3/issues"
},
"keywords": [
"Ethereum",
"JavaScript",
"API",
"Aion"
],
"author": {
"name:": "Aion Network",
"url": "https://aion.network/"
},
"contributors": [
{
"name": "Kelvin Lam",
"email": "kelvin@aion.network"
},
{
"name": "Tony Crowe",
"email": "github@tonycrowe.com"
},
{
"name": "Fabian Vogelsteller",
"email": "fabian@ethereum.org",
"homepage": "http://frozeman.de"
},
{
"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": {
"@types/bignumber.js": "^4.0.2",
"@types/underscore": "^1.8.9",
"babel-preset-env": "^1.6.0",
"bignumber.js": "^4.0.0",
"bluebird": "3.3.1",
"bn.js": "^4.11.8",
"bower": ">=1.4.1",
"browserify": "^14.4.0",
"chai": "^4.0.0",
"coveralls": "^3.0.2",
"del": ">=2.0.2",
"exorcist": "^0.4.0",
"istanbul": "^0.4.4",
"jshint": "^2.9.6",
"lerna": "^2.5.1",
"mocha": "^5.2.0",
"nodemon": "^1.18.4",
"nyc": "^13.0.1",
"sandboxed-module": "^2.0.2",
"vinyl-source-stream": "^2.0.0",
"cached-path-relative": ">=1.0.2"
},
"dependencies": {
"async": "^2.6.1",
"colors": "^1.3.2",
"crypto-js": "^3.1.9-1",
"repl": "^0.1.3",
"should": "^13.2.3",
"underscore": "^1.9.1",
"utf8": "^3.0.0",
"xhr2": "^0.1.4",
"xmlhttprequest": "^1.8.0"
}
}