@appigram/yookassa-node 1.1.2 → 1.1.5
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/.eslintrc.json +3 -3
- package/VERSION +1 -1
- package/package.json +46 -45
package/.eslintrc.json
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"globals": {
|
|
9
9
|
"global": true
|
|
10
10
|
},
|
|
11
|
-
"parser": "babel-
|
|
11
|
+
"parser": "@babel/eslint-parser",
|
|
12
12
|
"parserOptions": {
|
|
13
13
|
"ecmaVersion": 8,
|
|
14
14
|
"sourceType": "module",
|
|
@@ -261,7 +261,7 @@
|
|
|
261
261
|
],
|
|
262
262
|
"enforceConst": true,
|
|
263
263
|
"detectObjects": true,
|
|
264
|
-
"ignoreArrayIndexes": true
|
|
264
|
+
"ignoreArrayIndexes": true
|
|
265
265
|
}
|
|
266
266
|
],
|
|
267
267
|
"no-misleading-character-class": 2,
|
|
@@ -497,4 +497,4 @@
|
|
|
497
497
|
],
|
|
498
498
|
"yoda": 1
|
|
499
499
|
}
|
|
500
|
-
}
|
|
500
|
+
}
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.5
|
package/package.json
CHANGED
|
@@ -1,47 +1,48 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@appigram/yookassa-node",
|
|
3
|
+
"version": "1.1.5",
|
|
4
|
+
"description": "YooKassa API v3",
|
|
5
|
+
"main": "./lib/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"lint": "eslint ./",
|
|
8
|
+
"test": "mocha ./tests/basic.js"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"YooKassa",
|
|
12
|
+
"YooMoney",
|
|
13
|
+
"Yandex.Checkout",
|
|
14
|
+
"Yandex.Kassa",
|
|
15
|
+
"payment processing",
|
|
16
|
+
"credit cards",
|
|
17
|
+
"api"
|
|
18
|
+
],
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/appigram/yookassa-node"
|
|
22
|
+
},
|
|
23
|
+
"engines": {
|
|
24
|
+
"node": ">=12"
|
|
25
|
+
},
|
|
26
|
+
"author": "Evgeny Sysmanov <appigram@gmail.com> (https://ryfma.com/)",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"readme": "README.md",
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@babel/core": "^7.18.2",
|
|
31
|
+
"@babel/eslint-parser": "^7.18.2",
|
|
32
|
+
"chai": "^4.3.6",
|
|
33
|
+
"eslint": "^8.17.0",
|
|
34
|
+
"eslint-plugin-chai-friendly": "^0.7.2",
|
|
35
|
+
"eslint-plugin-import": "^2.26.0",
|
|
36
|
+
"mocha": "^10.0.0",
|
|
37
|
+
"sinon": "^14.0.0",
|
|
38
|
+
"supertest": "^6.2.3"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"axios": "^0.27.2",
|
|
42
|
+
"bluebird": "^3.7.2",
|
|
43
|
+
"request": "^2.88.2",
|
|
44
|
+
"request-promise": "^4.2.6",
|
|
45
|
+
"request-promise-core": "^1.1.4",
|
|
46
|
+
"uuid": "^8.3.2"
|
|
47
|
+
}
|
|
47
48
|
}
|