-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 867 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
42
43
{
"name": "gas2nel",
"version": "1.0.2",
"description": "A library for tracking and estimating resource usage metrics.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"build": "npm run lint && jest"
},
"keywords": [
"metrics",
"performance",
"resource-usage",
"gas-estimation",
"CPU",
"memory",
"network"
],
"author": "Dlordkendex",
"license": "MIT",
"dependencies": {
"events": "^3.3.0"
},
"devDependencies": {
"jest": "^29.0.0",
"eslint": "^8.0.0"
},
"engines": {
"node": ">=14"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/dlordkendex/gas2nel.git"
},
"bugs": {
"url": "https://github.com/dlordkendex/gas2nel/issues"
},
"homepage": "https://github.com/dlordkendex/gas2nel#readme"
}