-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "ethbase",
"version": "0.2.0",
"description": "Ethereum on-chain event subscription",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "npx truffle compile",
"test": "npx truffle test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planet-ethereum/ethbase.git"
},
"author": "Sina Mahmoodi",
"license": "MIT",
"bugs": {
"url": "https://github.com/planet-ethereum/ethbase/issues"
},
"homepage": "https://github.com/planet-ethereum/ethbase#readme",
"standard": {
"globals": [
"artifacts",
"contract",
"assert"
],
"envs": [
"mocha"
]
},
"devDependencies": {
"ethereumjs-abi": "^0.6.5",
"standard": "^12.0.0",
"truffle": "^5.0.0-beta.1",
"truffle-hdwallet-provider": "^1.0.0-web3one.0"
},
"dependencies": {
"bignumber.js": "^7.2.1",
"openzeppelin-solidity": "^1.12.0",
"truffle-contract": "^4.0.0-beta.0",
"web3": "^1.0.0-beta.35"
}
}