-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 975 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 975 Bytes
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
{
"name": "eth-event-reader",
"version": "1.0.3",
"description": "Ethereum Smart Contract Event Reader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p src",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/namisoft/eth-event-reader.git"
},
"keywords": [
"ethereum",
"smart contract",
"event",
"namisoft",
"namitech"
],
"author": "namitech.me",
"license": "ISC",
"bugs": {
"url": "https://github.com/namisoft/eth-event-reader/issues"
},
"homepage": "https://github.com/namisoft/eth-event-reader#readme",
"dependencies": {
"web3": "^1.0.0-beta.53"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/node": "^11.13.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
}
}