forked from web3/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 loc) · 2.67 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
{
"name": "web3true",
"private": false,
"namespace": "truechain",
"version": "1.1.8",
"description": "Truechain JavaScript API wrapper repository",
"license": "LGPL-3.0",
"main": "./packages/web3/index.js",
"types": "./index.d.ts",
"directories": {
"doc": "./doc",
"test": "./test"
},
"scripts": {
"clear": "find . -name 'node_modules' -type d -exec rm -rf \"{}\" \\;",
"build": "gulp",
"build-all": "gulp all",
"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/truechain/web3true.js.git"
},
"homepage": "https://github.com/truechain/web3true.js",
"bugs": {
"url": "https://github.com/truechain/web3true.js/issues"
},
"keywords": [
"Ethereum",
"TrueChain",
"JavaScript",
"API"
],
"authors": [
{
"name": "Felix Cai",
"email": "[email protected]",
"homepage": "https://tiaozhan.io"
}
],
"devDependencies": {
"@types/bignumber.js": "^4.0.2",
"babel-preset-env": "^1.6.0",
"bignumber.js": "^4.0.0",
"bluebird": "3.3.1",
"bower": ">=1.4.1",
"browserify": "^16.2.3",
"chai": "^4.0.0",
"coveralls": "^3.0.2",
"crypto-js": "^3.1.4",
"del": ">=2.0.2",
"ethereumjs-wallet": "^0.6.2",
"ethjs-signer": "^0.1.1",
"exorcist": "^0.4.0",
"gulp": "^4.0.0",
"gulp-babel": "^6.1.2",
"gulp-jshint": "^2.0.4",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^3.0.0",
"istanbul": "^0.4.4",
"jshint": "^2.9.7",
"mocha": ">=2.3.3",
"sandboxed-module": "^2.0.2",
"vinyl-source-stream": "^2.0.0"
},
"dependencies": {
"@types/bn.js": "^4.11.5",
"@types/eventemitter3": "^2.0.2",
"@types/got": "^9.4.4",
"@types/oboe": "^2.0.28",
"@types/underscore": "^1.8.14",
"@types/utf8": "^2.1.6",
"@types/uuid": "^3.4.4",
"babel-polyfill": "^6.26.0",
"underscore": "^1.8.3",
"bn.js": "^4.11.8",
"any-promise": "1.3.0",
"crypto-browserify": "3.12.0",
"eth-ens-namehash": "2.0.8",
"eth-lib": "0.2.7",
"ethers": "4.0.0-beta.1",
"ethjs-unit": "0.1.6",
"eventemitter3": "1.1.1",
"got": "7.1.0",
"number-to-bn": "1.7.0",
"oboe": "2.1.3",
"randomhex": "0.1.5",
"scrypt.js": "0.2.0",
"swarm-js": "^0.1.39",
"utf8": "2.1.1",
"uuid": "2.0.1",
"websocket": "git://github.com/frozeman/WebSocket-Node.git#browserifyCompatible",
"xhr2": "0.1.4"
}
}