@houlak/plexo-sdk 0.1.13-h → 0.1.14-h
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +14 -14
- package/package.json +47 -47
package/README.md
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
# Plexo SDK (Node)
|
|
2
|
-
|
|
3
|
-
Works as Plexo Gateway client, exposing all important features (addInstrument, purchase, cancel, etc) and solves the problem of building the security layer required by Plexo.
|
|
4
|
-
Such security is based on cryptographic keys for signing messages and verifying incoming responses.
|
|
5
|
-
|
|
6
|
-
## Current version
|
|
7
|
-
|
|
8
|
-
Current goal is to add test with jest
|
|
9
|
-
|
|
10
|
-
## Running
|
|
11
|
-
|
|
12
|
-
1. Clone this repo
|
|
13
|
-
2. run `npm (or Yarn) install`
|
|
14
|
-
3. Include this repo as a package on another project and call Plexo methods
|
|
1
|
+
# Plexo SDK (Node)
|
|
2
|
+
|
|
3
|
+
Works as Plexo Gateway client, exposing all important features (addInstrument, purchase, cancel, etc) and solves the problem of building the security layer required by Plexo.
|
|
4
|
+
Such security is based on cryptographic keys for signing messages and verifying incoming responses.
|
|
5
|
+
|
|
6
|
+
## Current version
|
|
7
|
+
|
|
8
|
+
Current goal is to add test with jest
|
|
9
|
+
|
|
10
|
+
## Running
|
|
11
|
+
|
|
12
|
+
1. Clone this repo
|
|
13
|
+
2. run `npm (or Yarn) install`
|
|
14
|
+
3. Include this repo as a package on another project and call Plexo methods
|
package/package.json
CHANGED
|
@@ -1,47 +1,47 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@houlak/plexo-sdk",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Node SDK for Plexo payment services",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"types": "lib/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "rimraf ./build && tsc",
|
|
9
|
-
"format": "prettier --write \"src/**/*.{ts,js}\"",
|
|
10
|
-
"lint": "tslint -p tsconfig.json",
|
|
11
|
-
"test": "env $(cat .env | xargs) ENV=test jest --verbose=false --coverage --config jest.config.js",
|
|
12
|
-
"prepare": "husky",
|
|
13
|
-
"prepublishOnly": "npm run lint",
|
|
14
|
-
"preversion": "npm run lint",
|
|
15
|
-
"version": "npm run format && git add -A src",
|
|
16
|
-
"postversion": "git push && git push --tags"
|
|
17
|
-
},
|
|
18
|
-
"author": "devteam@houlak",
|
|
19
|
-
"license": "ISC",
|
|
20
|
-
"dependencies": {
|
|
21
|
-
"axios": "^1.
|
|
22
|
-
"js-convert-case": "^4.2.0",
|
|
23
|
-
"pem": "^1.14.4",
|
|
24
|
-
"pino": "^10.2.1",
|
|
25
|
-
"pino-pretty": "^13.1.3"
|
|
26
|
-
},
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@types/jest": "^29.5.14",
|
|
29
|
-
"@types/node": "^22.10.5",
|
|
30
|
-
"@types/pem": "^1.9.6",
|
|
31
|
-
"@types/pino": "^7.0.5",
|
|
32
|
-
"husky": "^9.1.7",
|
|
33
|
-
"jest": "^29.7.0",
|
|
34
|
-
"prettier": "^3.4.2",
|
|
35
|
-
"rimraf": "^6.0.1",
|
|
36
|
-
"ts-jest": "^29.
|
|
37
|
-
"tslint": "^6.1.3",
|
|
38
|
-
"tslint-config-prettier": "^1.18.0",
|
|
39
|
-
"typescript": "^5.7.3"
|
|
40
|
-
},
|
|
41
|
-
"engines": {
|
|
42
|
-
"node": "24"
|
|
43
|
-
},
|
|
44
|
-
"files": [
|
|
45
|
-
"lib/**/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@houlak/plexo-sdk",
|
|
3
|
+
"version": "0.1.14-h",
|
|
4
|
+
"description": "Node SDK for Plexo payment services",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rimraf ./build && tsc",
|
|
9
|
+
"format": "prettier --write \"src/**/*.{ts,js}\"",
|
|
10
|
+
"lint": "tslint -p tsconfig.json",
|
|
11
|
+
"test": "env $(cat .env | xargs) ENV=test jest --verbose=false --coverage --config jest.config.js",
|
|
12
|
+
"prepare": "husky",
|
|
13
|
+
"prepublishOnly": "npm run lint",
|
|
14
|
+
"preversion": "npm run lint",
|
|
15
|
+
"version": "npm run format && git add -A src",
|
|
16
|
+
"postversion": "git push && git push --tags"
|
|
17
|
+
},
|
|
18
|
+
"author": "devteam@houlak",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"dependencies": {
|
|
21
|
+
"axios": "^1.15.2",
|
|
22
|
+
"js-convert-case": "^4.2.0",
|
|
23
|
+
"pem": "^1.14.4",
|
|
24
|
+
"pino": "^10.2.1",
|
|
25
|
+
"pino-pretty": "^13.1.3"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/jest": "^29.5.14",
|
|
29
|
+
"@types/node": "^22.10.5",
|
|
30
|
+
"@types/pem": "^1.9.6",
|
|
31
|
+
"@types/pino": "^7.0.5",
|
|
32
|
+
"husky": "^9.1.7",
|
|
33
|
+
"jest": "^29.7.0",
|
|
34
|
+
"prettier": "^3.4.2",
|
|
35
|
+
"rimraf": "^6.0.1",
|
|
36
|
+
"ts-jest": "^29.4.9",
|
|
37
|
+
"tslint": "^6.1.3",
|
|
38
|
+
"tslint-config-prettier": "^1.18.0",
|
|
39
|
+
"typescript": "^5.7.3"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": "24"
|
|
43
|
+
},
|
|
44
|
+
"files": [
|
|
45
|
+
"lib/**/*"
|
|
46
|
+
]
|
|
47
|
+
}
|