-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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": "jpm_online_payments",
"version": "0.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"default": "./dist/types/index.js"
}
},
"files": [
"dist",
"README",
"package.json"
],
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"build": "tsc && tsc-alias",
"test": "jest -i --testPathPattern=test",
"prepare": "npm run build"
},
"dependencies": {
"form-data": "^4.0.0",
"form-urlencoded": "^6.1.5",
"js-base64": "^3.7.7",
"jsonpointer": "^5.0.1",
"node-fetch": "^2.7.0",
"qs": "^6.12.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "17.0.33",
"@types/node-fetch": "2.6.9",
"@types/qs": "6.9.8",
"@types/url-join": "4.0.1",
"jest": "^29.7.0",
"prettier": "2.7.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.2.0"
}
}