-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.24 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.24 KB
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
{
"name": "conekta",
"version": "8.0.4",
"description": "OpenAPI client for conekta",
"author": "engineering conekta",
"repository": {
"type": "git",
"url": "https://github.com/conekta/conekta-node.git"
},
"engines": {
"node": ">=18"
},
"keywords": [
"conekta",
"wrapper",
"spei",
"bnpl",
"pago en plazos",
"credit card",
"payment",
"payout",
"subscription",
"api",
"nodejs"
],
"bugs": {
"url": "https://github.com/conekta/conekta-node/issues"
},
"homepage": "https://github.com/conekta/conekta-node#readme",
"license": "MIT",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/esm/index.js",
"sideEffects": false,
"scripts": {
"postbuild": "cp -r cert dist/cert",
"build": "tsc && tsc -p tsconfig.esm.json",
"prepare": "npm run build",
"test": "jest --coverage",
"clean": "rm -rf node_modules && rm -rf dist && rm -rf coverage"
},
"dependencies": {
"axios": "1.16.0"
},
"devDependencies": {
"@types/node": "^20.11.7",
"typescript": "^5.4",
"@types/jest": "^30.0.0",
"jest": "^30.3.0",
"jest-util": "^30.3.0",
"ts-jest": "^29.4.6"
},
"publishConfig": {
"access": "public"
}
}