forked from alitnk/monopay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.71 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
{
"version": "1.2.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --build ./tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest --runInBand",
"test:cov": "jest --coverage --runInBand"
},
"homepage": "https://alitnk.github.io/monopay",
"repository": {
"type": "git",
"url": "https://github.com/alitnk/monopay.git"
},
"bugs": {
"url": "https://github.com/alitnk/monopay/issues"
},
"name": "monopay",
"description": "A node.js package for making payment transactions with different Iranian IPGs",
"keywords": [
"payment",
"iran",
"iranian",
"iranian bank",
"ipg",
"persian bank",
"iranian payment gateway",
"payment gateway"
],
"author": {
"name": "Ali",
"email": "[email protected]"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^0.26.1",
"crc-32": "^1.2.1",
"crypto-js": "^4.1.1",
"fp-ts": "^2.11.9",
"global": "^4.4.0",
"io-ts": "^2.2.16",
"io-ts-reporters": "^2.0.1",
"rimraf": "^3.0.2",
"soap": "^0.43.0"
}
}