-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
108 lines (108 loc) · 2.99 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@tokenize.it/contracts",
"version": "5.0.1",
"description": "Tokenize.it smart contracts for company tokenization, crowdinvesting, private offers and employee participation",
"keywords": [
"evm",
"ethereum",
"smart contract",
"tokenize.it"
],
"homepage": "https://github.com/corpus-io/tokenize.it-smart-contracts",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/corpus-io/tokenize.it-smart-contracts/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "malteish",
"email": "[email protected]"
},
{
"name": "Christoph Jentzsch",
"email": "[email protected]"
}
],
"files": [
"/contracts/**/*.sol",
"/artifacts/contracts/**/*[!.dbg].json",
"/dist/**/*",
"/docs/**/*",
"hardhat.config.ts",
"tsconfig.json"
],
"repository": {
"type": "git",
"url": "https://github.com/corpus-io/tokenize.it-smart-contracts.git"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/types/index.js",
"installConfig": {
"hoistingLimits": "workspaces"
},
"publishConfig": {
"ignore": [
"src/",
"test/",
"**/*.t.sol*"
]
},
"devDependencies": {
"@foundry-rs/hardhat-forge": "^0.1.17",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-verify": "^2.0.10",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.0",
"chai": "^4.3.10",
"dotenv": "^16.0.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"ethereum-waffle": "^4.0.10",
"ethers": "^6.1.0",
"hardhat": "^2.22.0",
"hardhat-gas-reporter": "^1.0.8",
"npmignore": "^0.3.0",
"prettier": "^3.0.3",
"prettier-plugin-solidity": "^1.2.0",
"solhint": "^4.0.0",
"solidity-coverage": "^0.8.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@opengsn/contracts": "2.2.5",
"@openzeppelin/contracts": "4.9.6",
"@openzeppelin/contracts-upgradeable": "4.9.6"
},
"scripts": {
"prepack": "yarn npmignore --auto && yarn test && yarn build ",
"build": "yarn clean && yarn hardhat compile && yarn tsc --declaration",
"test": "forge test --no-match-test Mainnet",
"coverage": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-directory=./coverage",
"clean": "yarn hardhat clean && forge clean && rm -rf ./dist ./coverage ./cache"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"overrides": [
{
"files": "*.sol",
"options": {
"singleQuote": false,
"printWidth": 120
}
}
]
}
}