forked from gnidan/abi-to-sol
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.7 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.7 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "abi-to-sol",
"version": "0.1.4",
"description": "Compile ABI JSON to Solidity interface",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"bin": {
"abi-to-sol": "dist/bin/abi-to-sol.js",
"generate-random-abi": "dist/bin/generate-random-abi.js"
},
"files": [
"dist"
],
"author": "g. nicholas d'andrea <nick@gnidan.org>",
"license": "MIT",
"scripts": {
"abi-to-sol": "ts-node ./bin/abi-to-sol.ts",
"prepare": "tsc",
"example": "ts-node ./bin/generate-sample.ts",
"test": "jest lib/**",
"test:test": "jest test/**",
"test:dist": "yarn prepare && jest dist/lib",
"test:dist:test": "yarn prepare && jest dist/test"
},
"homepage": "https://github.com/gnidan/abi-to-sol#readme",
"repository": {
"type": "git",
"url": "https://github.com/gnidan/abi-to-sol.git"
},
"devDependencies": {
"@types/faker": "^5.1.2",
"@types/jest": "^26.0.14",
"@types/jest-json-schema": "^2.1.2",
"@types/prettier": "^2.1.1",
"change-case": "^4.1.1",
"faker": "^5.1.0",
"fast-check": "^2.4.0",
"husky": ">=4",
"jest": "^26.4.2",
"jest-fast-check": "^0.0.1",
"jest-json-schema": "^2.1.0",
"lint-staged": ">=10",
"solc": "^0.7.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@truffle/codec": "^0.6.2",
"@truffle/contract-schema": "^3.2.5",
"ajv": "^6.12.5",
"better-ajv-errors": "^0.6.7",
"neodoc": "^2.0.2",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.58"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
}
}