-
Notifications
You must be signed in to change notification settings - Fork 262
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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
{
"name": "@chainlink/implied-price-adapter",
"version": "1.4.0",
"description": "Chainlink implied-price adapter.",
"keywords": [
"Chainlink",
"LINK",
"BTC",
"Bitcoin",
"blockchain",
"oracle",
"implied-price"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/smartcontractkit/external-adapters-js",
"type": "git"
},
"license": "MIT",
"scripts": {
"clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo",
"prepack": "yarn build",
"build": "tsc -b",
"server": "node -e 'require(\"./index.js\").server()'",
"server:dist": "node -e 'require(\"./dist/index.js\").server()'",
"start": "yarn server:dist"
},
"dependencies": {
"@chainlink/ea-bootstrap": "workspace:*",
"@chainlink/ea-test-helpers": "workspace:*",
"axios": "1.12.0",
"decimal.js": "^10.3.1",
"tslib": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "22.14.1",
"@types/supertest": "2.0.16",
"nock": "13.5.6",
"supertest": "6.2.4",
"typescript": "5.8.3"
}
}