-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.78 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
{
"name": "qv_system",
"version": "1.0.0",
"description": "Quadratic Voting on the Ethereum Blockchain via a Smart Contract",
"directories": {
"test": "test"
},
"scripts": {
"lint": "solium -d contracts",
"prettier": "prettier --write **/*.sol",
"lintfix": "npm run lint -- --fix",
"cover": "solidity-coverage",
"test": "truffle test",
"migrate": "truffle migrate",
"coverage": "./node_modules/.bin/solidity-coverage",
"ganache": "ganache-cli --networkId 50 -p 8545 -m \"spike whip cancel pottery blade crane tomato flower ginger acid lava company\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreiD/qv_voting"
},
"dependencies": {
"@0x/abi-gen": "^2.0.9",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"ethereumjs-wallet": "^0.6.0",
"ganache-cli": "^6.1.8",
"openzeppelin-solidity": "^2.3.0",
"solc": "0.5.5",
"solidity-coverage": "^0.5.4",
"solium": "^1.1.7",
"truffle": "^4.1.13",
"truffle-assertions": "^0.9.1",
"truffle-contract": "^4.0.11",
"truffle-hdwallet-provider": "1.0.5",
"truffle-privatekey-provider": "^1.1.0",
"web3": "1.0.0-beta.48"
},
"keywords": [
"QV Voting",
"Quadratic Voting",
"Solidity",
"Job Board",
"Contract",
"dApp",
"Blockchain",
"Web3"
],
"author": {
"name": "Andy",
"email": "andyoctavian@protonmail.com",
"url": "https://github.com/AndreiD/qv_voting"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AndreiD/qv_voting/issues"
},
"homepage": "https://github.com/AndreiD/qv_voting#readme",
"readme": "https://github.com/AndreiD/qv_voting/blob/master/README.md",
"devDependencies": {
"prettier": "^1.17.1",
"prettier-plugin-solidity": "^1.0.0-alpha.22"
}
}