forked from securitize-io/dstoken
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.44 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.44 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
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
{
"name": "@securitize/digital_securities",
"version": "4.1.0",
"description": "Digital Securities Reference Implementation",
"scripts": {
"test": "hardhat test",
"test:unitests": "cross-env TEST_MODE=TRUE ./scripts/test.sh test2/unitests/**",
"test:integration": "cross-env TEST_MODE=TRUE ./scripts/test.sh test2/integration/**",
"compile": "hardhat compile",
"coverage": "hardhat coverage",
"changeset": "changeset",
"publish:snapshot": "changeset publish --no-git-tag --snapshot --tag snapshot"
},
"contributors": [
{
"name": "Shay Finkelstein",
"email": "shay@securitize.io"
},
{
"name": "Adam Zigdon",
"email": "adam@securitize.io"
},
{
"name": "Jorge Serna",
"email": "jorge@securitize.io"
},
{
"name": "Omri Perl",
"email": "omri@securitize.io"
},
{
"name": "Niv Dadush",
"email": "niv@securitize.io"
}
],
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.6",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-ignition": "^0.15.2",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.14",
"@nomicfoundation/ignition-core": "^0.15.2",
"@openzeppelin/contracts": "5.4.0",
"@openzeppelin/contracts-upgradeable": "5.4.0",
"@openzeppelin/hardhat-upgrades": "^3.9.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.14",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.6",
"bluebird": "^3.7.2",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^3.1.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"eslint": "^8.26.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.12.0",
"hardhat": "^2.22.2",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solidity-coverage": "^0.8.12",
"solium": "^0.5.5",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.4",
"@changesets/cli": "^2.22.0"
},
"dependencies": {},
"files": [
"artifacts",
"contracts",
"typechain-types"
]
}