-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.13 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "transbank-sdk-node",
"version": "3.4.0",
"description": "Awesome package to use REST methods on transbank products",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"src": "src",
"test": "test",
"dist": "dist"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"prepare": "husky install",
"test": "NODE_ENV=test jest",
"doc": "typedoc",
"ci": "npm instal && npm run build",
"lint": "eslint ./ --ext .ts --ignore-path .gitignore",
"lint:fix": "eslint ./ --ext .ts --ignore-path .gitignore --fix",
"changelog": "auto-changelog -p",
"semantic-release": "semantic-release"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/42devs/transbank-sdk-node.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"transbank",
"tbk",
"payments",
"webpay",
"webpayplus",
"oneclick",
"onepay",
"creditcard",
"debitcard",
"gateway",
"payment gateway"
],
"author": "Nicolas Martinez V. <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/42devs/transbank-sdk-node/issues"
},
"homepage": "https://github.com/42devs/transbank-sdk-node#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"auto-changelog": "^2.3.0",
"babel-eslint": "^10.1.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.2.7",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-json": "^3.1.0",
"husky": "^8.0.1",
"jest": "^27.4.3",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.1",
"typedoc": "^0.23.8",
"typescript": "^4.5.2"
},
"dependencies": {
"axios": "^0.27.2",
"module-alias": "^2.2.2"
},
"_moduleAliases": {
"~": "./dist"
}
}