-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 926 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
{
"name": "abi2api",
"version": "0.1.3",
"description": "Autogenerates a nodejs Swagger API for making web3.js calls to a smart contract of your choice.",
"main": "index.js",
"bin": "index.js",
"preferGlobal": true,
"scripts": {
"test": "mocha .tests/**.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eximchain/abi2api.git"
},
"keywords": [
"eximchain",
"ethereum",
"eth",
"smartcontract",
"smart",
"contract",
"codegen",
"swagger",
"openapi"
],
"author": "John J.D. O'Sullivan",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Eximchain/abi2api/issues"
},
"homepage": "https://github.com/Eximchain/abi2api#readme",
"dependencies": {
"abi2lib": "^0.2.0",
"abi2oas": "^0.1.1",
"commander": "^2.15.1",
"dot-prop": "^4.2.0",
"handlebars": "^4.0.11",
"shelljs": "^0.8.1"
}
}