-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 941 Bytes
/
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
{
"name": "chainlink-vrf-service",
"author": {
"name": "Jose Chifflet",
"url": "https://github.com/josechifflet"
},
"license": "MIT",
"description": "A simple and customizable contract that requests random numbers from Chainlink's VRF 2.5.",
"version": "1.0.0",
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@typechain/ethers-v6": "^0.4.3",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.4.1",
"rimraf": "^4.4.1",
"solhint": "^3.6.2",
"typechain": "^8.3.2"
},
"keywords": [
"blockchain",
"ethereum",
"polygon",
"forge",
"foundry",
"smart-contracts",
"solidity"
],
"private": true,
"scripts": {
"lint": "pnpm lint:sol",
"slither": "slither .",
"analyze": "run-s clean 'build:src --build-info' 'slither --ignore-compile'"
}
}