-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
90 lines (90 loc) · 2.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "redstone-api",
"version": "0.4.12",
"description": "Javascript library for fetching trusted token pricing data from Redstone data ecosystem",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --config jestconfig.json",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "yarn build",
"lint": "tslint -p ./",
"prepublishOnly": "yarn lint",
"preversion": "yarn lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"generate-docs": "typedoc ./src/** --out .exp/docs-typedoc",
"pack-package": "yarn build && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redstone-finance/redstone-api.git"
},
"keywords": [
"price",
"tokens",
"arweave",
"api",
"oracle",
"market",
"crypto",
"data",
"finance",
"defi",
"pricing",
"usd",
"AR",
"BTC",
"USDT",
"ETH",
"WETH",
"WBTC",
"coin",
"Bitcoin",
"Ethereum",
"currency",
"cryptocurrency"
],
"author": "Redstone Team <[email protected]>",
"contributors": [
"Jakub Wojciechowski <[email protected]>",
"Alex Suvorov <[email protected]>",
"Peter Pedziwiatr <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/redstone-finance/redstone-api/issues"
},
"homepage": "https://api.docs.redstone.finance/",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.33",
"@types/pako": "^1.0.1",
"console-stamp": "^3.0.2",
"discord.js": "^12.5.1",
"documentation": "^13.2.5",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.3",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.20.36",
"typedoc-plugin-markdown": "^3.7.2",
"typescript": "^4.2.3"
},
"dependencies": {
"ar-gql": "^0.0.6",
"arweave": "^1.10.16",
"arweave-multihost": "^0.1.0",
"axios": "^1.6.0",
"deep-sort-object": "^1.0.2",
"lodash": "^4.17.21",
"pako": "^2.0.3"
},
"files": [
"lib/**/*"
]
}