-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·55 lines (55 loc) · 1.25 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
{
"name": "sdk-node-apis-efi",
"main": "dist/cjs/index.cjs",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/cjs/index.cjs",
"types": "./dist/types/index.d.ts"
}
},
"description": "Module for integration with Efi Bank API",
"version": "1.2.14",
"author": "Efi Bank - Consultoria Técnica | João Vitor Oliveira | João Lucas",
"license": "MIT",
"repository": "efipay/sdk-node-apis-efi",
"homepage": "https://github.com/efipay/sdk-node-apis-efi",
"keywords": [
"efi",
"efi pay",
"efi bank",
"pagamentos",
"payment",
"sdk",
"integração",
"integration",
"api",
"bank slip",
"boleto bancario",
"credit card",
"cartao de credito",
"pix",
"Open Finance"
],
"dependencies": {
"axios": "^1.2.2",
"randomstring": "^1.2.2"
},
"scripts": {
"start": "node app.js",
"build": "rollup -c && tsc --project tsconfig.json",
"test": "./node_modules/.bin/jest",
"test-cov": "./node_modules/.bin/jest --coverage"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^6.1.0",
"prettier": "^3.0.3",
"rollup": "^2.52.3",
"typescript": "^4.3.5",
"undici": "^6.19.2"
}
}