-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 Bytes
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
{
"name": "dia-near-adapter",
"version": "1.0.0",
"description": "polls the dia.oracles.near contract listening for request calls",
"scripts": {
"build": "tsc",
"test": "cd dist && echo 'see http://localhost:8000' && node main.js test >>main.log",
"test-client-1": "node dist/test/quote-make-request.js",
"test-client-2": "node dist/test/volume-make-request.js",
"start": "npm run build && pm2 start ecosystem.config.js"
},
"keywords": [
"near",
"nearprotocol",
"blockchain",
"dia",
"oracles",
"diadata"
],
"author": "Narwallets.com",
"license": "ISC",
"dependencies": {
"bn": "^1.0.5",
"bn.js": "^5.1.3",
"dotenv": "^8.2.0",
"js-sha256": "^0.9.0",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/node": "^14.14.11",
"typescript": "^4.0.3"
}
}