forked from FairCrypto/XEN-crypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "@faircrypto/xen-crypto",
"version": "0.3.2",
"description": "XEN Crypto",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile -all",
"test": "truffle test",
"lint": "npm run lint:sol",
"lint:fix": "npm run lint:sol:fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier -c 'contracts/**/*.sol'",
"lint:sol:fix": "prettier --write \"contracts/**/*.sol\""
},
"keywords": [
"Fair Crypto Foundation",
"XEN",
"XEN Crypto",
"Ethereum",
"ERC-20"
],
"author": "J.Levin, L.Belyaev",
"license": "MIT",
"devDependencies": {
"@ethersproject/units": "^5.7.0",
"@truffle/hdwallet-provider": "^2.0.13",
"dotenv": "^16.0.1",
"ganache-time-traveler": "^1.0.16",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"solhint": "^3.3.7",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.28"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"abdk-libraries-solidity": "^3.0.0"
},
"files": [
"/build/contracts/*.json",
"/contracts/**/*.sol"
]
}