-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "dvote-solidity",
"version": "1.4.0",
"description": "Solidity smart contracts implementing the voting core features of Vocdoni",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha -r ts-node/register --timeout 5000 test/contracts/* test/wrappers/* && rm -rf ./blockchain-test-data",
"build": "make all",
"prepublishOnly": "make test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vocdoni/dvote-solidity.git"
},
"author": "Vocdoni",
"license": "AGPL",
"homepage": "https://github.com/vocdoni/dvote-solidity#readme",
"dependencies": {
"@openzeppelin/contracts": "^3.1.0",
"eth-ens-namehash": "^2.0.8",
"ethers": "^5.0.24",
"solidity-rlp": "^2.0.2",
"web3-utils": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.31",
"@types/sinon": "^9.0.8",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ganache-cli": "^6.12.1",
"ganache-core": "^2.13.1",
"mocha": "^8.2.1",
"solc": "^0.6.10",
"ts-node": "^10.9.1",
"tslint": "^5.15.0",
"typescript": "^4.0.5",
"yaml": "^1.10.0"
}
}