forked from ohmydai/ohmydai-contracts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "@ohmydai/contracts",
"version": "0.0.0-development",
"description": "Ethereum on-chain options implementation",
"keywords": [
"solidity",
"ethereum",
"token",
"erc20",
"defi"
],
"main": "index.js",
"scripts": {
"test": "buidler test",
"ethlint": "solium -d contracts"
},
"author": "ohmydai developer team",
"license": "MIT",
"devDependencies": {
"@nomiclabs/buidler": "^1.0.1",
"@nomiclabs/buidler-ganache": "^1.0.1",
"@nomiclabs/buidler-truffle5": "^1.0.1",
"@nomiclabs/buidler-web3": "^1.0.1",
"@openzeppelin/cli": "^2.5.3",
"@openzeppelin/upgrades": "^2.5.3",
"@truffle/hdwallet-provider": "^1.0.25",
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.13",
"chai": "^4.2.0",
"commander": "^4.0.1",
"dotenv": "^8.2.0",
"ethlint": "^1.2.5",
"semantic-release-cli": "^5.2.3",
"truffle": "^5.0.44",
"ts-node": "^8.5.4",
"typescript": "^3.7.4",
"web3": "^1.2.4"
},
"dependencies": {
"@openzeppelin/contracts-ethereum-package": "^2.4.0"
},
"files": [
"build",
"contracts",
"test",
".openzeppelin/project.json",
".openzeppelin/mainnet.json",
".openzeppelin/ropsten.json",
".openzeppelin/rinkeby.json",
".openzeppelin/kovan.json"
]
}