-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
73 lines (73 loc) · 1.99 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
{
"name": "@jfkz/tinkoff-payment-sdk",
"version": "1.4.1",
"description": "Tinkoff Payment SDK for Node.js",
"scripts": {
"build": "run-s build:clean build:compile",
"build:clean": "rm -rf ./dist/",
"build:compile": "tsc",
"build:watch": "tsc -w",
"lint": "npx eslint src/**/*.ts",
"prepublishOnly": "run-s build",
"start": "run-s build:clean build:watch",
"prepare": "husky install"
},
"keywords": [
"tinkoff",
"payment",
"sdk",
"node"
],
"author": "mike <[email protected]> (https://re-coders.com)",
"contributors": [
"Slava Fomin II <[email protected]> (https://slava.fomin.io)"
],
"homepage": "https://github.com/jfkz/tinkoff-payment-sdk",
"repository": "https://github.com/jfkz/tinkoff-payment-sdk.git",
"bugs": "https://github.com/jfkz/tinkoff-payment-sdk/issues",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"peerDependencies": {
"got": "^11.0.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
},
"dependencies": {
"crypto-js": "^4.1.1",
"date-fns": "^2.21.3",
"lodash": "^4.17.21",
"tmp": "^0.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.4",
"@types/node": "^12.19.0",
"@types/request-promise-native": "^1.0.17",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.3",
"got": "^11.5.2",
"husky": "^8.0.3",
"lint-staged": "^15.2.5",
"npm-run-all": "^4.1.5",
"prettier": "3.3.1",
"typescript": "^5.0.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix --max-warnings=0"
]
}
}