-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.17 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
{
"name": "fismo",
"version": "0.7.2",
"description": "Fismo: The Finite State Machine Protocol for EVM Blockchains",
"author": "Cliff Hall <[email protected]> (https://twitter.com/seaofarrows)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/cliffhall/Fismo.git"
},
"bugs": {
"url": "https://github.com/cliffhall/Fismo/issues"
},
"homepage": "https://github.com/cliffhall/Fismo",
"keywords": [
"blockchain",
"ethereum",
"fismo",
"solidity",
"fsm",
"finite state machine",
"state machine"
],
"files": [
"contracts/domain/**/*",
"contracts/components/**/*",
"contracts/interfaces/I*.sol",
"contracts/*.sol",
"sdk"
],
"scripts": {
"build:contracts": "npx hardhat compile",
"build:sdk": "./build-sdk.sh",
"test": "npx hardhat test",
"lint": "solhint 'contracts/**/*.sol'",
"size": "npx hardhat size-contracts",
"coverage": "npx hardhat coverage",
"npm:publish:dry-run": "npm publish --dry-run",
"npm:publish": "npm publish",
"deploy:local": "npx hardhat run --network hardhat scripts/deploy/deploy-and-verify-labs.js",
"deploy:poly:test": "npx hardhat run --network poly-test scripts/deploy/deploy-and-verify-pair.js >> logs/deploy.fismo.poly.test.txt",
"deploy:poly:main": "npx hardhat run --network poly-main scripts/deploy/deploy-and-verify-pair.js >> logs/deploy.fismo.poly.main.txt",
"deploy:eth:main": "npx hardhat run --network eth-main scripts/deploy/deploy-and-verify-pair.js >> logs/deploy.fismo.eth.main.txt"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@nomicfoundation/hardhat-verify": "^2.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.2",
"@openzeppelin/contracts": "^4.4.2",
"babel-loader": "^8.2.4",
"chai": "^4.2.0",
"eip55": "^2.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.3",
"hardhat-contract-sizer": "^2.4.0",
"hardhat-gas-reporter": "^1.0.7",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.18",
"webpack": "^4.46.0",
"webpack-cli": "^4.9.2"
}
}