-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "verifiable-delay-functions",
"version": "0.0.5",
"description": "Weak Verifiable Delay Functions in NodeJs and Solidity",
"main": "js/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/circle-free/verifiable-delay-functions.git"
},
"keywords": [
"vdf",
"verifiable delay functions",
"proof of delay",
"ethereum",
"solidity"
],
"scripts": {
"test": "mocha 'js/tests' && truffle migrate && truffle test",
"test-eth": "truffle test",
"test-js": "mocha 'js/tests'",
"ganache": "ganache-cli",
"lint-eth": "solhint 'eth/contracts/**/*.sol'",
"prettier": "prettier --write 'eth/contracts/**/*.sol' 'eth/tests/**/*.js' 'js/src/**/*.js' 'js/tests/**/*.js'",
"prettier-eth": "prettier --write 'eth/contracts/**/*.sol' 'eth/tests/**/*.js'",
"prettier-js": "prettier --write 'js/src/**/*.js' 'js/tests/**/*.js'",
"compile-eth": "truffle compile",
"migrate": "truffle migrate"
},
"author": "Circle-Free",
"license": "MIT",
"bugs": {
"url": "https://github.com/circle-free/verifiable-delay-functions/issues"
},
"homepage": "https://github.com/circle-free/verifiable-delay-functions#readme",
"private": false,
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.2.0",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.59",
"truffle": "^5.1.49"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"threads": "^1.6.3",
"web3-core-promievent": "^1.3.0"
}
}