-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.14 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
{
"name": "@roadmanjs/wallet",
"version": "0.0.71",
"description": "A very Wallet",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"docs/",
"dist/",
"register/",
"LICENSE"
],
"author": {
"name": "Ceddy Muhoza",
"email": "[email protected]",
"url": "https://ceddy.org"
},
"license": "MIT",
"private": false,
"scripts": {
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
"build": "rm -rf dist dist-client && tsc --skipLibCheck",
"postbuild": "node dist/postbuild.js",
"prebuildx": "ts-node src/prebuild.ts",
"test": "mocha src/*test.ts --exit",
"coinbase": "mocha src/processors/coinbase/rest/*test.ts --exit",
"nowpayments": "mocha src/processors/nowpayments/wrapper/*test.ts --exit",
"btcpay": "mocha src/processors/btcpayserver/*test.ts --exit",
"stripe": "mocha src/processors/stripe/*test.ts --exit",
"eslint": "eslint ./src --fix --ext=ts",
"pub": "yarn publish 'dist-client/' --access=public && yarn publish --access=public"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run eslint"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chalk": "^2.2.0",
"@types/coinbase": "^2.0.8",
"@types/debug": "^4.1.5",
"@types/dotenv": "^8.2.0",
"@types/ioredis": "^5.0.0",
"@types/lodash": "^4.14.168",
"@types/mocha": "^8.2.0",
"@types/node": "^10.0.3",
"@types/source-map-support": "^0.4.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^3.4.0",
"@typescript-eslint/parser": "^3.4.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^5.0.2",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"mocha": "^8.2.1",
"prettier": "^2.0.5",
"rimraf": "^2.5.4",
"ts-node": "^9.1.1",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@roadmanjs/auth": ">=0.0.32",
"couchset": ">=0.0.17",
"typescript": ">=2.0"
},
"dependencies": {
"@nowpaymentsio/nowpayments-api-js": "^1.0.5",
"@roadmanjs/auth": "^0.0.32",
"@roadmanjs/auth-client": "^0.0.32",
"@roadmanjs/logs": "^0.0.1",
"@roadmanjs/utils": "^0.0.12",
"bull": "^4.11.3",
"chalk": "^4.1.0",
"coinbase": "^2.0.8",
"couchset": "^0.0.17",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"lodash": "^4.17.20",
"node-cron": "^3.0.2",
"reflect-metadata": "^0.1.13",
"roadman": "^0.3.12",
"stripe": "^10.17.0"
}
}