forked from primitivefinance/v1-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.36 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
{
"name": "primitive",
"version": "0.1.0",
"description": "Permissionless options protocol on Ethereum.",
"main": "index.js",
"scripts": {
"clean-install": "rm -rf build && rm ./package-lock.json && rm -rf node_modules/* && npm install",
"compile": "npx buidler clean && npx buidler compile",
"coverage": "npx buidler coverage",
"lint": "solium -d contracts/",
"lint:fix": "solium -d contracts/ --fix",
"slither": "pip3 install --user slither-analyzer && slither .",
"bevm": "npx buidler node",
"test": "npx buidler test ./test/trader.js ./test/prime.js ./test/pool.js ./test/oracle.js",
"ganache:f-mainnet": "ganache-cli -f http://localhost:8545 -i 999 --unlock 0x9eb7f2591ed42dee9315b6e2aaf21ba85ea69f8c",
"test:f-mainnet": "npx buidler test --network local ./test/forked-mainnet/pool-mainnet.js ./test/forked-mainnet/oracle-mainnet.js",
"deploy:mainnet": "npx buidler run --network live scripts/deploy.js",
"deploy:local": "npx buidler run --network local scripts/deploy.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/primitivefinance/primitive-contracts.git"
},
"keywords": [
"defi",
"ethereum",
"primitive",
"Solidity",
"Defi"
],
"author": "Primitive",
"license": "MIT",
"bugs": {
"url": "https://github.com/primitivefinance/primitive-contracts/issues"
},
"homepage": "https://github.com/primitivefinance/primitive-contracts#readme",
"devDependencies": {
"@nomiclabs/buidler": "^1.3.2",
"@nomiclabs/buidler-etherscan": "^1.3.1",
"@nomiclabs/buidler-solhint": "^1.3.1",
"@nomiclabs/buidler-truffle5": "^1.3.1",
"@nomiclabs/buidler-web3": "^1.3.1",
"@truffle/hdwallet-provider": "^1.0.35",
"bn.js": "^5.1.1",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"chai-bn": "^0.2.1",
"dotenv": "^8.2.0",
"mocha": "^7.1.2",
"solc": "^0.6.8",
"solidity-coverage": "^0.7.0-beta.3",
"solium": "^1.2.5",
"web3": "^1.2.7"
},
"dependencies": {
"@openzeppelin/contracts": "^3.0.1",
"canonical-weth": "^1.4.0",
"rimraf": "^3.0.2",
"truffle-assertions": "^0.9.2",
"truffle-contract": "^4.0.31"
}
}