-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 895 Bytes
/
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
{
"name": "gas-buddy",
"version": "0.1.0",
"description": "Gas Fee Calculation Service for NEAR Smart Contracts",
"main": "index.js",
"author": "idea404",
"license": "MIT",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "node src/index.js",
"test": "ava --verbose --timeout=2m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idea404/gas-buddy.git"
},
"keywords": [
"gas",
"near-protocol",
"near",
"smart-contract",
"gas-profile"
],
"bugs": {
"url": "https://github.com/idea404/gas-buddy/issues"
},
"homepage": "https://github.com/idea404/gas-buddy#readme",
"devDependencies": {
"ava": "^4.3.3",
"supertest": "^6.2.4"
},
"dependencies": {
"express": "^4.18.1",
"near-api-js": "^1.0.0",
"near-workspaces": "^3.2.2",
"winston": "^3.8.1"
}
}