-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 878 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
{
"name": "abi2schema",
"version": "0.2.2",
"description": "solidity abit to json schema",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "npx eslint . --fix",
"test": "./node_modules/tape/bin/tape test.js | node_modules/.bin/tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sambacha/abi2schema.git"
},
"keywords": [
"solidity",
"abi",
"json",
"schema",
"ethereum",
"erc20"
],
"author": "see contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/sambacha/abi2schema/issues"
},
"homepage": "https://github.com/sambacha/abi2schema#readme",
"devDependencies": {
"eslint": "^7.18.0",
"openzeppelin-solidity": "^2.1.1",
"tap-spec": "^5.0.0",
"tape": "^5.1.1"
},
"dependencies": {
"merge": "^2.1.0"
}
}