forked from ethereumjs/ethereumjs-tx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 928 Bytes
/
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
{
"name": "ethereumjs-tx",
"version": "0.2.2",
"description": "An simple module for creating, manipulating and signing ethereum transactions",
"main": "index.js",
"scripts": {
"test": "./bin/tester -t"
},
"keywords": [
"ethereum",
"transactions"
],
"author": "mjbecze <[email protected]>",
"license": "GPL",
"dependencies": {
"bn.js": "^2.0.5",
"elliptic": "^3.1.0",
"ethereum-common": "0.0.3",
"ethereumjs-util": "^1.0.1",
"rlp": "^1.0.0",
"secp256k1": "0.0.15"
},
"devDependencies": {
"async": "^1.2.1",
"ethereum-tests": "git+https://github.com/ethereum/tests#develop",
"minimist": "^1.1.1",
"tape": "^4.0.0"
},
"browser": {
"./ecdsaOps.js": "./ecdsaOpsBrowser.js"
},
"testling": {
"browsers": [
"ie/9..latest",
"firefox/15..latest",
"chrome/22..latest"
],
"files": [
"test/transactions.js"
]
}
}