-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 912 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
38
39
40
41
{
"name": "@bitriel/bitrielswap-core",
"version": "1.0.1",
"description": "Core smart contract for Bitriel",
"license": "BUSL-1.1",
"directories": {
"test": "test"
},
"keywords": [
"bitrielswap",
"core"
],
"repository": {
"type": "git",
"url": "https://github.com/bitriel/bitrielswap-core.git"
},
"files": [
"contracts/interfaces",
"contracts/libraries",
"contracts/BitrielFactory.sol",
"contracts/BitrielPool.sol",
"build/contracts/BitrielFactory.json",
"build/contracts/BitrielPool.json",
"build/contracts/I*.json"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"@truffle/hdwallet-provider": "^1.4.1",
"dotenv": "^10.0.0"
},
"devDependencies": {
"truffle-contract-size": "^2.0.1",
"truffle-plugin-verify": "^0.5.10"
},
"scripts": {
"compile": "truffle compile",
"test": "truffle test"
}
}