-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
48
49
50
51
52
53
54
55
56
57
{
"name": "biscoint-api-node",
"version": "1.4.3",
"description": "Library for interacting with Biscoint API",
"license": "MIT",
"homepage": "https://github.com/Biscoint/biscoint-api-node",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Biscoint/biscoint-api-node.git"
},
"bugs": {
"url": "https://github.com/Biscoint/biscoint-api-node/issues"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js"
},
"files": [
"src/**/*.ts",
"lib/**/*.js",
"typings/**/*.d.ts",
"typings/**/*.d.ts.map"
],
"scripts": {
"prepare": "npm run --silent build",
"build": "tsc --build",
"test": "mocha -t 5000",
"lint": "eslint . --ext .ts",
"checks": "npm test && npm run lint",
"refresh": "npm run clean && npm ci",
"clean": "git clean -fX .eslintcache lib/ typings/"
},
"type": "commonjs",
"engines": {
"node": "^12.20.0 || >=14.13.1"
},
"types": "./typings/index.d.ts",
"dependencies": {
"axios": "^0.21.2",
"bignumber.js": "^9.0.1",
"crypto-js": "^4.0.0",
"joi": "^17.4.0"
},
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/node": "^16.4.3",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"typescript": "^4.3.5"
},
"keywords": [
"biscoint",
"bitcoin",
"api",
"trade"
]
}