-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.64 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
{
"name": "caps-payment",
"version": "1.10.3",
"description": "",
"main": "./lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "mocha -r ts-node/register tests/*.test.ts --timeout 10000",
"testOperation": "mocha -r ts-node/register tests/operation.test.ts",
"testPayout": "mocha -r ts-node/register tests/payout.test.ts",
"testTransfer": "mocha -r ts-node/register tests/transfer.test.ts",
"testPayin": "mocha -r ts-node/register tests/payin.test.ts --timeout 20000",
"testPaymentAccount": "mocha -r ts-node/register tests/paymentAccount.test.ts --timeout 20000",
"testAccountHolder": "mocha -r ts-node/register tests/accountHolder.test.ts --timeout 20000",
"testMandate": "mocha -r ts-node/register tests/mandate.test.ts --timeout 20000",
"testPaymentMethod": "mocha -r ts-node/register tests/paymentMethod.test.ts --timeout 20000",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"form-data": "^4.0.0",
"i": "^0.3.7",
"jsonwebtoken": "^8.5.1",
"npm": "^8.11.0",
"tslint": "^6.1.3",
"underscore": "^1.13.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chai": "^4.3.4",
"eslint": "^8.3.0",
"mocha": "^9.2.2",
"prettier": "2.8.8",
"request": "^2.88.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"typings": "^2.1.1"
}
}