forked from PlatONnetwork/client-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
147 lines (147 loc) · 4.82 KB
/
Copy pathpackage.json
File metadata and controls
147 lines (147 loc) · 4.82 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "web3",
"private": true,
"version": "1.2.4",
"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"
},
"bundlesize": [
{
"path": "./packages/web3/dist/web3.min.js",
"maxSize": "1.5 mB",
"compression": "none"
}
],
"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",
"wasm": "mocha ./test/1_platon_wasm.js",
"solc": "mocha ./test/1_platon_http.js",
"test:unit": "nyc --no-clean --silent _mocha -- -R spec --grep E2E --invert",
"dtslint": "lerna run dtslint",
"depcheck": "lerna exec dependency-check -- --missing --verbose .",
"bundlesize": "bundlesize",
"geth": "geth-dev-assistant --accounts 5 --tag stable --gasLimit 7000000",
"test:e2e:ganache": "./scripts/e2e.ganache.sh",
"test:e2e:geth:auto": "./scripts/e2e.geth.automine.sh",
"test:e2e:geth:insta": "./scripts/e2e.geth.instamine.sh",
"test:e2e:clients": "npm run test:e2e:ganache; npm run test:e2e:geth:insta; npm run test:e2e:geth:auto",
"test:e2e:chrome": "./scripts/e2e.chrome.sh",
"test:e2e:firefox": "./scripts/e2e.firefox.sh",
"test:e2e:min": "./scripts/e2e.min.sh",
"test:e2e:cdn": "./scripts/e2e.cdn.sh",
"test:e2e:browsers": "npm run build; npm run test:e2e:chrome; npm run test:e2e:firefox",
"test:e2e:publish": "./scripts/e2e.npm.publish.sh",
"test:e2e:truffle": "./scripts/e2e.truffle.sh",
"test:e2e:mosaic": "./scripts/e2e.mosaic.sh",
"ci": "./scripts/ci.sh",
"coveralls": "./scripts/coveralls.sh"
},
"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.4",
"@babel/preset-env": "^7.6.3",
"regenerator-runtime": "^0.13.3",
"@types/bignumber.js": "^4.0.2",
"@types/bn.js": "^4.11.5",
"@types/node": "^12.6.1",
"@types/underscore": "^1.8.0",
"babelify": "^10.0.0",
"bignumber.js": "^4.0.0",
"bluebird": "3.3.1",
"bn.js": "^4.11.8",
"bower": "1.8.8",
"browserify": "^16.5.0",
"bundlesize": "^0.18.0",
"chai": "^4.2.0",
"core-js": "^3.4.8",
"coveralls": "^3.0.7",
"crypto-js": "^3.1.9-1",
"del": "^4.1.1",
"dependency-check": "^4.1.0",
"ethereumjs-common": "^1.3.2",
"ethereumjs-tx": "^2.1.1",
"ethers": "4.0.33",
"ethjs-signer": "^0.1.1",
"exorcist": "^1.0.1",
"ganache-cli": "^6.7.0",
"geth-dev-assistant": "^0.1.3",
"gulp": "^4.0.2",
"gulp-jshint": "^2.1.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^1.0.0",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.2",
"jshint": "^2.10.2",
"karma": "^4.4.1",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "0.0.32",
"lerna": "^3.18.3",
"mocha": "^6.2.1",
"mochawesome": "^4.1.0",
"nyc": "^14.1.1",
"puppeteer": "^1.20.0",
"sandboxed-module": "^2.0.3",
"surge": "^0.21.3",
"typescript": "next",
"underscore": "^1.9.1",
"vinyl-source-stream": "^2.0.0",
"wait-port": "^0.2.6"
}
}