This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.75 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
{
"name": "@rsksmart/rns-rskregistrar",
"description": "Registrar for rsk top level domain.",
"version": "1.2.4",
"files": [
"/contracts",
"!/contracts/Migrations.sol",
"/RSKOwnerData.json",
"/NamePriceData.json",
"/FIFSRegistrarData.json",
"/RenewerData.json",
"/FIFSAddrRegistrarData.json",
"/BytesUtilsData.json",
"/types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rnsdomains/rns-fifs.git"
},
"keywords": [
"rsk",
"rif",
"rns"
],
"scripts": {
"test-regtest": "truffle test --network rskRegtest",
"test": "truffle test",
"prepublish": "npx truffle compile && node ./datagen.js && npm run types-generation",
"types-generation": "typechain --target=web3-v1 '*Data.json' && typechain --target=web3-v2 '*Data.json' && typechain --target=truffle '*Data.json' && typechain --target=ethers '*Data.json'"
},
"author": "rnsdomains",
"license": "MIT",
"bugs": {
"url": "https://github.com/rnsdomains/rns-fifs/issues"
},
"homepage": "https://github.com/rnsdomains/rns-fifs#readme",
"dependencies": {
"@ensdomains/ethregistrar": "1.2.2",
"@openzeppelin/contracts": "^2.3.0",
"@rsksmart/erc677": "^1.0.1",
"@rsksmart/rns-auction-registrar": "^1.0.1",
"@rsksmart/rns-registry": "^1.0.0",
"@rsksmart/rns-resolver": "^2.0.0"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.1",
"@truffle/hdwallet-provider": "^1.0.33",
"chai": "^4.2.0",
"eth-ens-namehash": "^2.0.8",
"mem": ">=4.0.0",
"truffle": "^5.1.34",
"typechain": "^1.0.5",
"typechain-target-ethers": "^1.0.4",
"typechain-target-truffle": "^1.0.2",
"typechain-target-web3-v1": "^1.0.4",
"typechain-target-web3-v2": "^1.0.0"
}
}