-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
51 lines (51 loc) · 1.15 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
{
"name": "crypto-convert",
"version": "2.1.7",
"description": "Convert crypto to fiat and vice-versa instantly.",
"main": "dist/index.js",
"scripts": {
"build": "tsc && node after_build.js && npm run test && npm run cdn",
"test": "mocha --exit --timeout 5000",
"cdn": "webpack && node after_build.js --cdn",
"api-types": "rests ./src/api.ts -t ./src/api.d.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coinconvert/crypto-convert.git"
},
"keywords": [
"cryptocurrency",
"crypto",
"bitcoin",
"btcusd",
"binance",
"coinbase",
"bitfinex",
"convert",
"price",
"exchange",
"api"
],
"author": "Elis",
"license": "Elis",
"bugs": {
"url": "https://github.com/coinconvert/crypto-convert/issues"
},
"homepage": "https://coinconvert.net",
"dependencies": {
"rests": "^1.1.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.8.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}