-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
44 lines (44 loc) · 1.4 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
{
"name": "@bisonai/orakl-contracts",
"version": "2.0.2",
"description": "The Orakl Network Smart Contracts",
"files": [
"v0.1/dist",
"v0.1/src",
"v0.1/package.json",
"v0.2/dist",
"v0.2/src",
"v0.2/package.json"
],
"keywords": [
"Oracle",
"Orakl",
"Orakl Network",
"Blockchain",
"Web3",
"VRF",
"Request-Response",
"Data Feed"
],
"exports": {
"./v0.1": "./v0.1/dist/index.js",
"./v0.2": "./v0.2/dist/index.js"
},
"scripts": {
"compile": "yarn --cwd='../' contracts-v01 compile && yarn --cwd='../' contracts-v02 compile",
"build": "yarn --cwd='../' contracts-v01 build && yarn --cwd='../' contracts-v02 build",
"clean": "yarn --cwd='../' contracts-v01 clean && yarn --cwd='../' contracts-v02 clean",
"test": "yarn --cwd='../' contracts-v01 test && yarn --cwd='../' contracts-v02 test",
"prettier-solidity-check": "yarn --cwd='../' contracts-v01 prettier-solidity-check",
"solhint": "yarn --cwd='../' contracts-v01 solhint",
"lint": "yarn --cwd='../' contracts-v01 lint && yarn --cwd='../' contracts-v02 lint",
"test-non-vrf": "yarn --cwd='../' contracts-v01 test-non-vrf && yarn --cwd='../' contracts-v02 test"
},
"engines": {
"node": ">=20.0.0"
},
"author": "Bisonai",
"homepage": "https://github.com/Bisonai/orakl/tree/master/contracts#orakl-network-contracts",
"license": "MIT",
"devDependencies": {}
}