-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.38 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
{
"name": "@sfomin/tinkoff-payment-sdk",
"version": "0.1.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"
},
"keywords": [
"tinkoff",
"payment",
"sdk",
"node"
],
"author": "Slava Fomin II <[email protected]> (https://slava.fomin.io)",
"homepage": "https://github.com/slavafomin/tinkoff-payment-sdk",
"repository": "https://github.com/slavafomin/tinkoff-payment-sdk.git",
"bugs": "https://github.com/slavafomin/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": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/lodash": "^4.14.159",
"@types/node": "^12.12.54",
"@types/request-promise-native": "^1.0.17",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-plugin-import": "^2.22.0",
"got": "^11.5.2",
"npm-run-all": "^4.1.5",
"typescript": "^3.9.7"
}
}