-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 KB
/
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
46
47
48
49
50
51
52
53
54
{
"name": "sol-sql",
"version": "0.0.1-alpha.0",
"description": "SQL for Ethereum smart contracts. Makes storage and relationship management as easy as SQL commands.",
"author": "Leo Vigna",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/leovigna/sol-sql.git"
},
"bugs": {
"url": "https://github.com/leovigna/sol-sql/issues"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"datastructure",
"dictionary",
"set",
"mapping",
"SQL",
"ethereum",
"solidity",
"orm",
"nodejs",
"object relational mapper"
],
"files": [
"src/**/*"
],
"scripts": {
"postinstall": "npm run compile && npm run typechain",
"compile": "oz compile",
"typechain": "npm run typechain:web3",
"typechain:web3": "typechain --target=web3-v1 --outDir src/contracts/web3 \"**/abi/**/*.json\""
},
"dependencies": {
"sol-datastructs": "*"
},
"devDependencies": {
"ethers": "^4.0.46",
"truffle": "^5.1.19",
"typechain": "^1.0.5",
"typechain-target-ethers": "^1.0.4",
"typechain-target-truffle": "^1.0.2",
"typechain-target-web3-v1": "^1.0.4"
},
"publishConfig": {
"access": "public"
},
"gitHead": "5fe7c8e8e6ee7bb5a28eba7eece9383a6987cdf1"
}