forked from witnet/vrf-solidity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.57 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.57 KB
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
{
"name": "vrf-solidity",
"version": "0.2.2",
"description": "Verifiable Random Function (VRF) library written in Solidity",
"main": "",
"scripts": {
"test": "truffle test",
"test:local": "truffle test --network local",
"console": "truffle console",
"postinstall": "npm run compile-contracts",
"compile-contracts": "truffle compile --all",
"fmt": "solium -d contracts && eslint ./test ./benchmark",
"fmt!": "solium -d contracts --fix && eslint ./test ./benchmark --fix",
"solium": "solium -d contracts",
"solium:fix": "solium -d contracts --fix",
"lint": "eslint ./test",
"lint:fix": "eslint ./test --fix",
"coverage": "solidity-coverage",
"gas-analysis": "truffle test ./benchmark/VRFGasHelper.sol ./benchmark/gas.js"
},
"author": "Witnet Foundation <info@witnet.foundation>",
"repository": {
"type": "git",
"url": "https://github.com/witnet/vrf-solidity.git"
},
"keywords": [
"cryptography",
"ethereum",
"witnet",
"solidity",
"vrf",
"secp256k1",
"ecc"
],
"license": "MIT",
"dependencies": {
"elliptic-curve-solidity": "0.2.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eth-gas-reporter": "^0.2.15",
"ethlint": "^1.2.5",
"ganache-cli": "^6.9.1",
"solidity-coverage": "^0.7.2",
"solium": "^1.2.5",
"truffle": "^5.1.17",
"truffle-assertions": "^0.9.2"
}
}