-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.42 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@spherity/ethr-revocation-registry",
"version": "1.1.2",
"description": "The Ethereum Revocation List types for smart contract interaction.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npm run types && npm run compile-src",
"init": "docker-compose -f development/docker-compose.yml up -d",
"types": "npm run compile && npm run generate-types && npm run compile-types",
"generate-types": "npm run generate-truffle-types && npm run generate-ethers-types",
"generate-truffle-types": "npx typechain --target=truffle-v5 --out-dir=types-ts/truffle-v5/ 'build/contracts/*.json'",
"generate-ethers-types": "npx typechain --target=ethers-v6 --out-dir=types-ts/ethers-v6/ 'build/contracts/*.json'",
"compile-types": "npm run compile-truffle-types && npm run compile-ethers-types",
"compile-truffle-types": "echo 'truffle types are not supported yet for distribution'",
"compile-ethers-types": "tsc -p tsconfig.ethers.json --outDir ./types/ethers-v6/",
"compile-src": "tsc -p tsconfig.src.json --outDir ./dist/",
"migrate": "tsc -p ./tsconfig.migrate.json --outDir ./migrations && npm run compile && truffle migrate",
"migrate-goerli": "tsc -p ./tsconfig.migrate.json --outDir ./migrations && npm run compile && truffle migrate --network goerli",
"migrate-sepolia": "tsc -p ./tsconfig.migrate.json --outDir ./migrations && npm run compile && truffle migrate --network sepolia",
"test": "npm run test:jest && npm run test:truffle",
"test:truffle": "npx truffle test",
"test:truffle:meta": "npx truffle test test/meta-transactions.test.ts",
"test:coverage": "npx truffle run coverage",
"test:jest": "jest",
"compile": "npx truffle compile && apply-registry"
},
"files": [
"dist",
"types",
"contracts",
"networks",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/spherity/Ethereum-Revocation-Registry.git"
},
"author": {
"name": "Dennis von der Bey",
"email": "[email protected]",
"url": "https://www.vonderbey.eu"
},
"contributors": [
{
"name": "Philipp Bolte",
"email": "[email protected]"
},
{
"name": "Lauritz Leifermann",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/spherity/Ethereum-Revocation-Registry/issues"
},
"homepage": "https://github.com/spherity/Ethereum-Revocation-Registry#readme",
"license": "GPL-3.0-only",
"dependencies": {
"dotenv": "^16.0.2",
"ethers": "^6.7.1"
},
"devDependencies": {
"@typechain/ethers-v6": "^0.5.0",
"@typechain/truffle-v5": "^8.0.6",
"@openzeppelin/contracts": "^4.9.3",
"@openzeppelin/contracts-upgradeable": "^4.9.3",
"@openzeppelin/truffle-upgrades": "^1.20.1",
"@truffle/hdwallet-provider": "^1.7.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^7.0.2",
"chai-as-promised": "^7.1.1",
"eth-gas-reporter": "^0.0.4",
"jest": "^29.6.4",
"solhint": "^2.0.0",
"solidity-coverage": "^0.7.22",
"truffle": "^5.11.3",
"truffle-deploy-registry": "^0.5.1",
"truffle-typings": "^1.0.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.1",
"typescript": "^4.6",
"web3": "^1.10.2",
"web3-core": "^1.10.2",
"web3-eth-contract": "^1.10.2",
"web3-utils": "^1.10.2"
}
}