-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
55 lines (55 loc) · 1.22 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": "conekta",
"version": "6.0.3",
"description": "OpenAPI client for conekta",
"author": "engineering conekta",
"repository": {
"type": "git",
"url": "https://github.com/conekta/conekta-node.git"
},
"engines": {
"node": ">=14"
},
"keywords": [
"conekta",
"wrapper",
"spei",
"oxxo",
"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.8.1"
},
"devDependencies": {
"@types/node": "^22.0.2",
"typescript": "^5.4",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ttypescript": "^1.5.10"
},
"publishConfig": {
"access": "public"
}
}