-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "@changelly/fiat-api-sdk-node",
"version": "1.0.0",
"description": "Node.js SDK for Changelly Fiat API",
"license": "MIT",
"keywords": [
"changelly",
"fiatapi"
],
"scripts": {
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"clear": "rimraf dist/*",
"tsc": "tsc",
"make-bundle": "rollup --config",
"build": "npm run clear && npm run tsc && npm run make-bundle",
"watch": "tsc --watch"
},
"files": [
"changelly-fiat-api.d.ts",
"changelly-fiat-api.js",
"changelly-fiat-api.js.map"
],
"main": "changelly-fiat-api.js",
"types": "changelly-fiat-api.d.ts",
"dependencies": {
"axios": "^1.5.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.4",
"@types/node": "^20.8.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"rimraf": "^5.0.5",
"rollup": "^3.29.4",
"rollup-plugin-dts": "^6.0.2",
"typescript": "^5.2.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/changelly/fiat-api-sdk-node.git"
},
"author": "changelly",
"bugs": {
"url": "https://github.com/changelly/fiat-api-sdk-node/issues"
},
"homepage": "https://github.com/changelly/fiat-api-sdk-node#readme"
}