-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "solidity-dynamic-array",
"version": "0.4.0",
"author": {
"name": "Kamil Planer",
"url": "https://github.com/MrKampla"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/MrKampla/solidity-dynamic-array"
},
"files": [
"contracts"
],
"license": "MIT",
"description": "Resizable in-memory array for Solidity",
"scripts": {
"build": "forge build",
"test": "forge test",
"clean": "forge clean",
"lint": "npm run lint:sol && npm run prettier:check",
"lint:sol": "solhint \"{src,test}/**/*.sol\"",
"prettier:check": "prettier --check \"**/*.{md,sol,yml}\"",
"prettier:write": "prettier --write \"**/*.{md,sol,yml}\"",
"docgen": "npx foundry-docgen",
"slither": "slither . --exclude-dependencies --filter-paths \"lib|test\""
},
"devDependencies": {
"@types/node": "^18.13.0",
"prettier": "^2.8.0",
"prettier-plugin-solidity": "^1.0.0",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5"
},
"keywords": [
"blockchain",
"ethereum",
"library",
"dynamic-array",
"smart-contracts",
"solidity"
]
}