-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 886 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 886 Bytes
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
{
"name": "ratesjs",
"version": "1.1.2",
"description": "Library for get currencies rates",
"main": "build/index.js",
"homepage": "https://github.com/samyan/ratesjs.git",
"repository": {
"type": "git",
"url": "https://github.com/samyan/ratesjs.git"
},
"scripts": {
"build": "babel src --out-dir build --extensions \".ts,.tsx\" --source-maps inline",
"build-ts": "tsc"
},
"keywords": [
"currency",
"rates",
"fiat",
"crypto"
],
"author": "samyan",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-decorators": "^7.20.13",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"babel-preset-minify": "^0.5.2",
"typescript": "^4.9.5"
},
"dependencies": {
"axios": "^1.4.0",
"https-proxy-agent": "^7.0.0"
}
}