-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 974 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
43
44
45
{
"name": "truffle-web3-generator",
"version": "1.0.4",
"description": "utility to auto generate web3 functions for each truffle contract",
"main": "src/index.js",
"bin": {
"truffle-plugin/truffle-generate": "./bin/truffle-generate",
"truffle-generate": "./bin/truffle-generate"
},
"directories": {
"test": "test"
},
"scripts": {
"generate": "node ./index",
"test": "echo \"No test specified\""
},
"keywords": [
"truffle",
"web3",
"ethereum",
"generate",
"smartcontract",
"javascript"
],
"author": "Eman Herawy <[email protected]>",
"license": "MIT",
"dependencies": {
"arg": "^4.1.0",
"esm": "^3.2.18",
"fs-extra": "^9.0.0",
"ncp": "^2.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmanHerawy/truffle-service-generator"
},
"files": [
"bin/",
"src/",
"truffle-plugin.json"
]
}