-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 2.29 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "coinforbarter-node",
"version": "1.0.6",
"description": "CoinForBarter Nodejs Library - Integrate and Manage cryptocurrency payments for goods and services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/t-kings/coinforbarter-v1-node.git",
"author": {
"name": "Nwachukwu, Kingsley Tochukwu",
"email": "[email protected]"
},
"dependencies": {
"axios": "^0.21.1",
"node": "^16.10.0",
"websocket": "^1.0.34"
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"dev": "tsc -w ",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"engines": {
"node": ">=14.1"
},
"keywords": [
"bitcoin",
"payments",
"BTC",
"crypto currency",
"DOGE",
"API",
"React Crypto",
"CoinForBarter",
"Crypto Sdk",
"Naira",
"NGN",
"Dollar",
"USD",
"Bitcoin",
"BTC",
"Dogecoin",
"DOGE",
"Ethereum",
"ETH",
"TetherUS",
"USDT",
"Usd Coin",
"USDC",
"Busd",
"BUSD",
"Dai",
"DAI",
"Paxus Standard",
"PAX",
"Bitcoin Cash",
"BCH",
"Wrapped Bitcoin",
"WBTC",
"BTC",
"BEP20",
"ERC20",
"DOGECOIN",
"BCH"
],
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^6.0.0",
"jest": "^27.0.6",
"prettier": "^2.2.1",
"dotenv": "^10.0.0",
"typescript": "^4.3.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "babel-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"setupFiles": [
"dotenv/config"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}