-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "@metrixnames/pricelib",
"version": "1.0.5",
"description": "A library for fetching the MRX to USD price based on the MNS price oracle",
"repository": "TheLindaProjectInc/pricelib",
"source": "src/index.ts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"README.md"
],
"directories": {
"lib": "./lib",
"src": "./src",
"test": "./src"
},
"engines": {
"npm": ">=6.0.0",
"node": ">=18.0.0"
},
"scripts": {
"test": "mocha --config mocharc.json",
"format": "prettier --write \"**/*.+(js|ts|json)\"",
"build": "tsc",
"doc": "npx typedoc src",
"clean": "rimraf lib docs"
},
"author": "SeqSEE",
"license": "MIT",
"dependencies": {
"@metrixcoin/metrilib": "^1.6.2-beta",
"axios": "^1.4.0",
"ethers": "^6.3.0"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^22.4.0",
"mocha": "^10.2.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"typedoc": "^0.26.6",
"typescript": "^5.0.4"
}
}